Index.vue 460 B

123456789101112131415
  1. <template>
  2. <app-view>
  3. <template #header>
  4. <app-navbar :title="$t('rules.ryszc')" />
  5. </template>
  6. <component :is="asyncComponent" :url="getHtmlFileUrl('yszc.htm')" />
  7. </app-view>
  8. </template>
  9. <script lang="ts" setup>
  10. import { defineAsyncComponent } from 'vue'
  11. import { getHtmlFileUrl } from '@/filters'
  12. const asyncComponent = defineAsyncComponent(() => import('@mobile/components/base/html-panel/index.vue'))
  13. </script>