Blame view

src/router/menus/modules/demo/exception.ts 555 Bytes
陈文彬 authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import type { MenuModule } from '/@/router/types.d';
const menu: MenuModule = {
  orderNo: 500,
  menu: {
    name: '异常页',
    path: '/exception',
    children: [
      {
        path: '/404',
        name: '404',
      },
      {
        path: '/500',
        name: '500',
      },
      {
        path: '/net-work-error',
        name: '网络错误',
      },
      {
        path: '/page-time-out',
        name: '页面超时',
      },
      {
        path: '/not-data',
        name: '无数据',
      },
    ],
  },
};
export default menu;