AppMain.vue
318 Bytes
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-03-28 10:12:27
-->
<template>
<transition name="fade-transform" mode="out-in">
<router-view />
</transition>
</template>
<script>
export default {
name: 'AppMain',
computed: {
key () {
return this.$route.path
}
}
}
</script>