Blame view

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