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.

24 lines
546 B

10 months ago
<template>
<!-- <section class="app-main">
<transition name="fade-transform" mode="out-in">
<router-view :key="$route.path" />
</transition>
</section> -->
7 months ago
<router-view></router-view>
<!-- <router-view v-slot="{ Component }">
<keep-alive>
<component :is="Component"></component>
</keep-alive>
7 months ago
</router-view> -->
10 months ago
</template>
<script lang="ts" setup>
import {} from 'vue'
9 months ago
import { useRoute } from 'vue-router'
10 months ago
const $route = useRoute()
9 months ago
console.log($route)
10 months ago
</script>
9 months ago
<style lang="scss" scoped></style>