mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
fix: 修复plugin-layout中计算默认展开菜单未考虑未配置在菜单的路由场景 (#172)
This commit is contained in:
parent
fbf1441101
commit
a4abb51e88
@ -96,6 +96,9 @@ export default {
|
|||||||
});
|
});
|
||||||
const defaultExpandMenu = computed(() => {
|
const defaultExpandMenu = computed(() => {
|
||||||
let index = menuArray.value.findIndex((item) => item.value === activePath.value);
|
let index = menuArray.value.findIndex((item) => item.value === activePath.value);
|
||||||
|
if (index === -1) {
|
||||||
|
return props.expandedKeys;
|
||||||
|
}
|
||||||
const activeMenu = menuArray.value[index];
|
const activeMenu = menuArray.value[index];
|
||||||
const arr = [activeMenu];
|
const arr = [activeMenu];
|
||||||
while (index > 0) {
|
while (index > 0) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user