- <template>
- <app-view>
- <template #header>
- <app-navbar :title="$t('rules.ryszc')" />
- </template>
- <component :is="asyncComponent" :url="getHtmlFileUrl('yszc.htm')" />
- </app-view>
- </template>
- <script lang="ts" setup>
- import { defineAsyncComponent } from 'vue'
- import { getHtmlFileUrl } from '@/filters'
- const asyncComponent = defineAsyncComponent(() => import('@mobile/components/base/html-panel/index.vue'))
- </script>
|