Blame view

src/router/menus/modules/dashboard.ts 446 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
    path: '/dashboard',
Vben authored
9
vben authored
10
11
    children: [
      {
vben authored
12
        path: 'analysis',
13
        name: t('routes.dashboard.analysis'),
Vben authored
14
15
16
17
      },
      {
        path: 'workbench',
        name: t('routes.dashboard.workbench'),
vben authored
18
19
      },
    ],
陈文彬 authored
20
  },
vben authored
21
};
陈文彬 authored
22
export default menu;