2023-06-05 09:25:16 +08:00

12 lines
279 B
Vue

<template>
<div class="app-main">
<router-view v-slot="{ Component, route }">
<transition name="fade-transform" mode="out-in">
<component :is="Component" :key="route" />
</transition>
</router-view>
</div>
</template>
<style lang="scss">
</style>