feat(menu): add mixSideTrigger setting

This commit is contained in:
vben
2021-01-01 23:03:40 +08:00
parent 799a694b25
commit 0419a07041
5 changed files with 42 additions and 3 deletions

View File

@@ -33,6 +33,8 @@ const getSplit = computed(() => unref(getMenuSetting).split);
const getMenuBgColor = computed(() => unref(getMenuSetting).bgColor);
const getMixSideTrigger = computed(() => unref(getMenuSetting).mixSideTrigger);
const getCanDrag = computed(() => unref(getMenuSetting).canDrag);
const getAccordion = computed(() => unref(getMenuSetting).accordion);
@@ -145,5 +147,6 @@ export function useMenuSetting() {
getIsMixMode,
getIsMixSidebar,
getCloseMixSidebarOnChange,
getMixSideTrigger,
};
}