From 77ff852aaa7377f09aee0a3bc66e047fd8b60b4e Mon Sep 17 00:00:00 2001 From: sight <1453017105@qq.com> Date: Sat, 10 Sep 2022 21:22:38 +0800 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8(component):=20[subMenuPopup]=E6=A8=AA?= =?UTF-8?q?=E5=90=91=E8=8F=9C=E5=8D=95=E7=9A=84=E4=BA=8C=E7=BA=A7=E8=8F=9C?= =?UTF-8?q?=E5=8D=95=20placement=20=E7=94=B1=20bottom-start=20=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=E4=B8=BA=20bottom?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package/component/src/component/subMenu/SubMenuPopup.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/component/src/component/subMenu/SubMenuPopup.vue b/package/component/src/component/subMenu/SubMenuPopup.vue index e4a7f576..32dabf12 100644 --- a/package/component/src/component/subMenu/SubMenuPopup.vue +++ b/package/component/src/component/subMenu/SubMenuPopup.vue @@ -35,7 +35,7 @@ const computedExpandIcon = computed(() => { }); const computedPlacement = computed(() => { - return !isTree.value && level.value === 2 ? "bottom-start" : "right-start"; + return !isTree.value && level.value === 2 ? "bottom" : "right-start"; });