属性 | 说明 |
---|---|
include | 需要缓存的组件 |
exclude | 不需要缓存的组件 |
max | 最大缓存组件数 |
<template> <KeepAlive> <component :is="tabs[currentTab]"></component> </KeepAlive> </template>
<RouterView v-slot="{ Component }"> <transition> <keep-alive> <component :is="Component" /> </keep-alive> </transition> </RouterView>