feat: route add profile

This commit is contained in:
xingyu4j
2025-11-10 17:51:10 +08:00
parent 4347fba80a
commit e311cfb8da
4 changed files with 23 additions and 2 deletions

View File

@@ -89,6 +89,16 @@ const routes: RouteRecordRaw[] = [
order: 9999,
},
},
{
name: 'Profile',
path: '/profile',
component: () => import('#/views/_core/profile/index.vue'),
meta: {
icon: 'lucide:user',
hideInMenu: true,
title: $t('page.auth.profile'),
},
},
];
export default routes;