index.vue 416 B

1234567891011121314
  1. <template>
  2. <app-view class="app-html">
  3. <template #header>
  4. <app-navbar title="服务热线" />
  5. </template>
  6. <component :is="asyncComponent" url="./html/fwrx.htm" />
  7. </app-view>
  8. </template>
  9. <script lang="ts" setup>
  10. import { defineAsyncComponent } from 'vue'
  11. const asyncComponent = defineAsyncComponent(() => import('@mobile/components/base/html-panel/index.vue'))
  12. </script>