App.vue 317 B

12345678910111213
  1. <script setup lang="ts">
  2. import { RouterView } from 'vue-router'
  3. import { useRoute } from 'vue-router'
  4. import VideoView from '@/views/Video/src/VideoView.vue'
  5. const route = useRoute()
  6. </script>
  7. <template>
  8. <VideoView v-if="route.name === 'Demo Video'" />
  9. <RouterView v-else />
  10. </template>
  11. <style scoped></style>