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