mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-08-27 11:35:58 +08:00
wip: add account management page
This commit is contained in:
17
src/router/menus/modules/demo/system.ts
Normal file
17
src/router/menus/modules/demo/system.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
import type { MenuModule } from '/@/router/types';
|
||||
import { t } from '/@/hooks/web/useI18n';
|
||||
|
||||
const menu: MenuModule = {
|
||||
orderNo: 2000,
|
||||
menu: {
|
||||
name: t('routes.demo.system.moduleName'),
|
||||
path: '/system',
|
||||
children: [
|
||||
{
|
||||
path: 'account',
|
||||
name: t('routes.demo.system.account'),
|
||||
},
|
||||
],
|
||||
},
|
||||
};
|
||||
export default menu;
|
Reference in New Issue
Block a user