diff --git a/packages/fes-plugin-layout/src/runtime/views/Menu.vue b/packages/fes-plugin-layout/src/runtime/views/Menu.vue index d00dc746..ef4e2d75 100644 --- a/packages/fes-plugin-layout/src/runtime/views/Menu.vue +++ b/packages/fes-plugin-layout/src/runtime/views/Menu.vue @@ -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) {