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> </keep-alive>
</router-view> </router-view>
</template> </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> </template>
<script> <script>
import { import {
@ -144,6 +151,22 @@ export default {
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 { return {
route, route,
pageList, pageList,
@ -152,7 +175,9 @@ export default {
switchPage, switchPage,
handlerMore, handlerMore,
handleCloseTab, handleCloseTab,
actions actions,
getComponent,
includePages
}; };
} }
}; };

View File

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