|
@@ -10,7 +10,7 @@ const props = defineProps({
|
|
|
|
|
|
const { $storage, $config } = useGlobal<GlobalPropertiesApi>();
|
|
|
|
|
|
-const keepAlive = computed(() => {
|
|
|
+const isKeepAlive = computed(() => {
|
|
|
return $config?.KeepAlive;
|
|
|
});
|
|
|
|
|
@@ -86,7 +86,7 @@ const transitionMain = defineComponent({
|
|
|
</el-backtop>
|
|
|
<transitionMain :route="route">
|
|
|
<keep-alive
|
|
|
- v-if="keepAlive"
|
|
|
+ v-if="isKeepAlive"
|
|
|
:include="usePermissionStoreHook().cachePageList"
|
|
|
>
|
|
|
<component
|
|
@@ -106,7 +106,7 @@ const transitionMain = defineComponent({
|
|
|
<div v-else>
|
|
|
<transitionMain :route="route">
|
|
|
<keep-alive
|
|
|
- v-if="keepAlive"
|
|
|
+ v-if="isKeepAlive"
|
|
|
:include="usePermissionStoreHook().cachePageList"
|
|
|
>
|
|
|
<component
|