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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
| const exceptionRoutes = {
| path: '/exception',
| name: 'Exception',
| component: '/index/index',
| meta: {
| title: 'menus.exception.title',
| icon: 'ri:error-warning-line'
| },
| children: [
| {
| path: '403',
| name: 'Exception403',
| component: '/exception/403',
| meta: {
| title: 'menus.exception.forbidden',
| keepAlive: true,
| isHideTab: true,
| isFullPage: true
| }
| },
| {
| path: '404',
| name: 'Exception404',
| component: '/exception/404',
| meta: {
| title: 'menus.exception.notFound',
| keepAlive: true,
| isHideTab: true,
| isFullPage: true
| }
| },
| {
| path: '500',
| name: 'Exception500',
| component: '/exception/500',
| meta: {
| title: 'menus.exception.serverError',
| keepAlive: true,
| isHideTab: true,
| isFullPage: true
| }
| }
| ]
| }
| export { exceptionRoutes }
|
|