Blame view

src/router/menus/modules/dashboard.ts 662 Bytes
陈文彬 authored
1
import type { MenuModule } from '/@/router/types.d';
vben authored
2
3
4
5
6
7
8
9
const menu: MenuModule[] = [
  {
    orderNo: 0,
    menu: {
      path: '/dashboard/welcome',
      name: 'routes.dashboard.welcome',
    },
陈文彬 authored
10
  },
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
  {
    orderNo: 10,
    menu: {
      name: 'routes.dashboard.dashboard',
      path: '/dashboard',
      children: [
        {
          path: '/workbench',
          name: 'routes.dashboard.workbench',
        },
        {
          path: '/analysis',
          name: 'routes.dashboard.analysis',
        },
        // {
        //   path: '/welcome',
        //   name: 'routes.dashboard.welcome',
        // },
      ],
    },
  },
];
陈文彬 authored
33
export default menu;