feat: add user settings page

This commit is contained in:
edgex
2024-03-18 12:06:10 +08:00
parent e1432d7af8
commit dd28b8de12
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
};
}