feat: add user settings page

This commit is contained in:
edgex
2024-03-18 12:06:10 +08:00
committed by edgexie
parent eeb09a8da2
commit 8d45ba8885
13 changed files with 407 additions and 3 deletions

View File

@@ -99,6 +99,10 @@ export function useNav() {
emitter.emit("openPanel");
}
function handleOpenUserSettings() {
router.push({ name: "UserInfoManage" });
}
function toggleSideBar() {
pureApp.toggleSideBar();
}
@@ -160,6 +164,7 @@ export function useNav() {
avatarsStyle,
tooltipEffect,
getDropdownItemStyle,
getDropdownItemClass
getDropdownItemClass,
handleOpenUserSettings
};
}