feat: 支持keep-alive

This commit is contained in:
wanchun 2022-03-22 11:32:35 +08:00
parent 4550c7499d
commit 444ed4ba3c
2 changed files with 29 additions and 3 deletions

View File

@ -36,7 +36,14 @@
</keep-alive>
</router-view>
</template>
<router-view v-else></router-view>
<router-view v-else v-slot="{ Component, route }">
<keep-alive :include="includePages">
<component
:is="getComponent(Component, route)"
:key="getPageKey(route)"
/>
</keep-alive>
</router-view>
</template>
<script>
import {
@ -144,6 +151,22 @@ export default {
default:
}
};
const includePages = ref([]);
const getComponent = (Component, _route) => {
if (_route.meta['keep-alive']) {
const name = _route.meta?.name || _route.name;
if (name) {
// name
Component.type.name = name;
// namekeep-aliveinclude
if (!includePages.value.includes(name)) {
includePages.value = [...includePages.value, name];
}
}
}
return Component;
};
return {
route,
pageList,
@ -152,7 +175,9 @@ export default {
switchPage,
handlerMore,
handleCloseTab,
actions
actions,
getComponent,
includePages
};
}
};

View File

@ -11,7 +11,8 @@
<config>
{
"name": "editor",
"title": "$editor"
"title": "$editor",
"keep-alive": true
}
</config>
<script>