mirror of
https://gitee.com/dromara/go-view.git
synced 2025-08-10 15:59:46 +08:00
15 lines
415 B
Vue
15 lines
415 B
Vue
<template>
|
|
<router-view #default="{ Component, route }">
|
|
<transition name="fade" mode="out-in" appear>
|
|
<component
|
|
v-if="route.meta.noKeepAlive"
|
|
:is="Component"
|
|
:key="route.fullPath"
|
|
></component>
|
|
<keep-alive v-else>
|
|
<component :is="Component" :key="route.fullPath"></component>
|
|
</keep-alive>
|
|
</transition>
|
|
</router-view>
|
|
</template>
|