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

This commit is contained in:
听海 2023-03-06 16:06:27 +08:00 committed by GitHub
parent 04a605ab77
commit 943ffba07f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -96,6 +96,9 @@ export default {
});
const defaultExpandMenu = computed(() => {
let index = menuArray.value.findIndex((item) => item.value === activePath.value);
if (index === -1) {
return props.expandedKeys;
}
const activeMenu = menuArray.value[index];
const arr = [activeMenu];
while (index > 0) {