16 lines
448 B
Vue
16 lines
448 B
Vue
<template>
|
||
<router-view #default="{ Component, route }">
|
||
<!-- todo 动画暂时不生效,待处理 -->
|
||
<transition name="fade" mode="out-in" appear>
|
||
<component
|
||
v-if="route.noKeepAlive"
|
||
:is="Component"
|
||
:key="route.fullPath"
|
||
></component>
|
||
<keep-alive v-else>
|
||
<component :is="Component" :key="route.fullPath"></component>
|
||
</keep-alive>
|
||
</transition>
|
||
</router-view>
|
||
</template>
|