mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
feat: 支持keep-alive
This commit is contained in:
parent
4550c7499d
commit
444ed4ba3c
@ -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;
|
||||||
|
// 缓存的关键是组件name在keep-alive的include列表
|
||||||
|
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
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -11,7 +11,8 @@
|
|||||||
<config>
|
<config>
|
||||||
{
|
{
|
||||||
"name": "editor",
|
"name": "editor",
|
||||||
"title": "$editor"
|
"title": "$editor",
|
||||||
|
"keep-alive": true
|
||||||
}
|
}
|
||||||
</config>
|
</config>
|
||||||
<script>
|
<script>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user