Files
vxe-table/examples/views/keepAlives/TestKeepAlive.vue
2024-06-22 20:43:14 +08:00

10 lines
177 B
Vue

<template>
<div>
<router-view v-slot="{ Component }">
<keep-alive>
<component :is="Component" />
</keep-alive>
</router-view>
</div>
</template>