fix: 修复plugin-layout中计算默认展开菜单未考虑未配置在菜单的路由场景 (#172)

This commit is contained in:
听海 2023-03-06 16:06:27 +08:00 committed by GitHub
parent fbf1441101
commit a4abb51e88

View File

@ -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) {