vben
2020-11-26 19011296ed61f820356f6b201cbb274d57dcb7d3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import type { MenuModule } from '/@/router/types.d';
 
const menu: MenuModule = {
  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',
      },
    ],
  },
};
export default menu;