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

<script setup lang="ts">
const a = 1
if (a == 1) {
console.log(a)
}
</script>
<template>
<router-view v-slot="{ Component }">
<transition>
<component :is="Component" />
</transition>
</router-view>
</template>
<style scoped>
</style>