11 lines
212 B
Vue
11 lines
212 B
Vue
<template>
|
|
<router-view v-slot="{ Component }">
|
|
<transition name="fade" mode="out-in">
|
|
<component :is="Component" />
|
|
</transition>
|
|
</router-view>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
</script>
|