Files
go-view/src/layout/components/LayoutTransitionMain/index.vue
T
2022-05-02 17:18:18 +08:00

15 lines
396 B
Vue

<template>
<router-view #default="{ Component, route }">
<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>