mirror of
https://gitee.com/dromara/go-view.git
synced 2025-05-13 23:03:49 +08:00
15 lines
359 B
Vue
15 lines
359 B
Vue
<template>
|
|
<router-view>
|
|
<template #default="{ Component, route }">
|
|
<component
|
|
v-if="route.noKeepAlive"
|
|
:is="Component"
|
|
:key="route.fullPath"
|
|
></component>
|
|
<keep-alive v-else>
|
|
<component :is="Component" :key="route.fullPath"></component>
|
|
</keep-alive>
|
|
</template>
|
|
</router-view>
|
|
</template>
|