基本表单功能、通用设置界面

This commit is contained in:
Gary Fu
2023-12-30 18:21:15 +08:00
parent d74c876d70
commit a65a1db306
9 changed files with 322 additions and 77 deletions

View File

@@ -15,9 +15,7 @@ export const MENU_INFO_LIST = ref({})
export const useMenuInfo = item => {
const path = item.path
if (path !== '/') {
const menuInfo = MENU_INFO_LIST.value[path]
console.info('config menu:', menuInfo)
return menuInfo
return MENU_INFO_LIST.value[path]
}
}