wip: add account management page

This commit is contained in:
Vben
2021-03-01 00:56:25 +08:00
parent c8e84dc14e
commit 37669d067c
23 changed files with 372 additions and 16 deletions

View 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;