fix:keepAliveComponents

This commit is contained in:
鲨鱼辣椒
2022-12-30 10:21:03 +08:00
parent 5a50bc0dc4
commit 1f858929d6

View File

@@ -2,7 +2,7 @@
<RouterView>
<template #default="{ Component, route }">
<transition :name="getTransitionName" mode="out-in" appear>
<keep-alive v-if="keepAliveComponents" :include="keepAliveComponents">
<keep-alive v-if="keepAliveComponents.length" :include="keepAliveComponents">
<component :is="Component" :key="route.fullPath" />
</keep-alive>
<component v-else :is="Component" :key="route.fullPath" />