16 lines
430 B
Vue
Raw Normal View History

2021-12-18 22:05:00 +08:00
<template>
<router-view #default="{ Component, route }">
2021-12-19 19:19:46 +08:00
<!-- todo 动画暂时不生效待处理 -->
<transition name="v-modal" mode="out-in" appear>
2021-12-18 22:05:00 +08:00
<component
v-if="route.noKeepAlive"
:is="Component"
:key="route.fullPath"
/>
<keep-alive v-else>
<component :is="Component" :key="route.fullPath" />
</keep-alive>
2021-12-19 19:19:46 +08:00
</transition>
2021-12-18 22:05:00 +08:00
</router-view>
</template>