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.
19 lines
397 B
19 lines
397 B
10 months ago
|
<template>
|
||
|
<!-- <section class="app-main">
|
||
|
<transition name="fade-transform" mode="out-in">
|
||
|
<router-view :key="$route.path" />
|
||
|
</transition>
|
||
|
</section> -->
|
||
|
<router-view></router-view>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts" setup>
|
||
|
import {} from 'vue'
|
||
|
import {useRoute } from 'vue-router'
|
||
|
const $route = useRoute()
|
||
|
console.log( $route);
|
||
|
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped></style>
|