index.vue 401 B

12345678910
  1. <template>
  2. <AllChannel v-if="channel === '1'" v-model:channel="channel"></AllChannel>
  3. <OtherChannel v-else v-model:channel="channel"></OtherChannel>
  4. </template>
  5. <script setup lang="ts" name="countMainTrend">
  6. const AllChannel = defineAsyncComponent(() => import('./allChannel.vue'));
  7. const OtherChannel = defineAsyncComponent(() => import('./otherChannel.vue'));
  8. const channel = ref('2')
  9. </script>