- <template>
- <app-view class="app-html">
- <template #header>
- <app-navbar title="服务热线" />
- </template>
- <component :is="asyncComponent" url="./html/fwrx.htm" />
- </app-view>
- </template>
- <script lang="ts" setup>
- import { defineAsyncComponent } from 'vue'
- const asyncComponent = defineAsyncComponent(() => import('@mobile/components/base/html-panel/index.vue'))
- </script>
|