Blame view

src/router/menus/modules/dashboard.ts 414 Bytes
陈文彬 authored
1
2
3
4
5
6
7
8
import type { MenuModule } from '/@/router/types.d';
const menu: MenuModule = {
  orderNo: 10,
  menu: {
    name: 'Dashboard',
    path: '/dashboard',
    children: [
      {
9
10
11
12
        path: '/workbench',
        name: '工作台',
      },
      {
13
14
15
16
        path: '/analysis',
        name: '分析页',
      },
      {
陈文彬 authored
17
        path: '/welcome',
18
        name: '首页',
陈文彬 authored
19
20
21
22
23
      },
    ],
  },
};
export default menu;