Blame view

src/router/menus/modules/dashboard.ts 445 Bytes
1
import type { MenuModule } from '/@/router/types';
2
import { t } from '/@/hooks/web/useI18n';
vben authored
3
vben authored
4
5
6
const menu: MenuModule = {
  orderNo: 10,
  menu: {
7
    name: t('routes.dashboard.dashboard'),
vben authored
8
9
10
    path: '/dashboard',
    children: [
      {
vben authored
11
        path: 'workbench',
12
        name: t('routes.dashboard.workbench'),
vben authored
13
14
      },
      {
vben authored
15
        path: 'analysis',
16
        name: t('routes.dashboard.analysis'),
vben authored
17
18
      },
    ],
陈文彬 authored
19
  },
vben authored
20
};
陈文彬 authored
21
export default menu;