Files
go-view/src/layout/components/LayoutMain/index.vue
T
2023-03-21 20:18:41 +08:00

15 lines
365 B
Vue

<template>
<router-view>
<template #default="{ Component, route }">
<component
v-if="route.meta.noKeepAlive"
:is="Component"
:key="route.fullPath"
></component>
<keep-alive v-else>
<component :is="Component" :key="route.meta?.key"></component>
</keep-alive>
</template>
</router-view>
</template>