(component): [subMenuPopup]横向菜单的二级菜单 placement 由 bottom-start 修改为 bottom

This commit is contained in:
sight 2022-09-10 21:22:38 +08:00
parent c6238e3c81
commit 77ff852aaa

View File

@ -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";
});
</script>