From d5b014ecc5a1f93aa6f0499da423999a3db7a405 Mon Sep 17 00:00:00 2001 From: wanchun <445436867@qq.com> Date: Tue, 25 Apr 2023 12:32:04 +0800 Subject: [PATCH] =?UTF-8?q?fix(plugin-layout):=20=E9=BB=98=E8=AE=A4?= =?UTF-8?q?=E8=B7=AF=E7=94=B1=E5=A6=82=E6=9E=9C=E4=B8=8D=E6=98=AF=E8=8F=9C?= =?UTF-8?q?=E5=8D=95,=E5=88=99=E4=B8=8D=E9=9C=80=E8=A6=81=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0=E5=88=B0expandedKeys=E4=B8=AD,=E5=90=A6=E5=88=99?= =?UTF-8?q?=E4=BC=9A=E5=AF=BC=E5=88=99defaultExpandAll=E4=B8=8D=E7=94=9F?= =?UTF-8?q?=E6=95=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/fes-plugin-layout/src/runtime/views/Menu.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/fes-plugin-layout/src/runtime/views/Menu.vue b/packages/fes-plugin-layout/src/runtime/views/Menu.vue index 0e4ba224..66723fea 100644 --- a/packages/fes-plugin-layout/src/runtime/views/Menu.vue +++ b/packages/fes-plugin-layout/src/runtime/views/Menu.vue @@ -105,7 +105,7 @@ export default { return; } const activeMenu = menuArray.value[index]; - const arr = [activeMenu]; + const arr = activeMenu.children?.length ? [activeMenu] : []; while (index > 0) { index = index - 1; const lastMenu = menuArray.value[index];