route.js
1.18 KB
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
46
47
48
49
50
51
52
53
54
55
56
export default [{
path: '/',
name: '首页',
component: () => import('./views/client/index.vue'),
meta: {
title: ''
},
children: []
}, {
path: '/client/index',
name: '客户端入口页',
component: () => import('./views/client/index.vue'),
meta: {
title: '童声无界'
},
children: []
}, {
path: '/client/chooseSchool',
name: '客户端选择幼儿园页',
component: () => import('./views/client/chooseSchool.vue'),
meta: {
title: '选择幼儿园'
},
children: []
}, {
path: '/client/chooseBook',
name: '客户端选择爱心书籍',
component: () => import('./views/client/chooseBook.vue'),
meta: {
title: '爱心书籍'
},
children: []
}, {
path: '/client/bookDetail',
name: '客户端选择书籍下视频作品',
component: () => import('./views/client/bookDetail.vue'),
meta: {
title: '书籍'
},
children: []
}, {
path: '/client/videoDetail',
name: '视频作品详情',
component: () => import('./views/client/videoDetail.vue'),
meta: {
title: '作品'
},
children: []
}, {
path: '/image',
name: 'html转图片',
component: () => import('./views/html2canvas.vue'),
meta: {
title: ''
}
}];