1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| window.route = [
|
| {
| name: 'Home',
| isKeepAlive: true,
| isAffix: false,
| path: '/home',
| component: '/project/ch/home/Home.vue',
| redirect: null,
| },
| {
| name: 'Scenario',
| isKeepAlive: true,
| isAffix: false,
| path: '/Scenario',
| component: '/project/ch/home/Scenario.vue',
| redirect: null,
| }
|
| ];
|
|