You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
256 B

5 months ago
5 months ago
5 months ago
5 months ago
  1. <script setup lang="ts">
  2. const a = 1
  3. if (a == 1) {
  4. console.log(a)
  5. }
  6. </script>
  7. <template>
  8. <router-view v-slot="{ Component }">
  9. <transition>
  10. <component :is="Component" />
  11. </transition>
  12. </router-view>
  13. </template>
  14. <style scoped>
  15. </style>