Vue3中使用keep-alive变动
需要使用以下这种写法
<router-view v-slot="{ Component }">
<keep-alive :include="['about', 'home']">
<component :is="Component"/>
</keep-alive>
</router-view>
需要使用以下这种写法
<router-view v-slot="{ Component }">
<keep-alive :include="['about', 'home']">
<component :is="Component"/>
</keep-alive>
</router-view>