index.js
1.49 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*
* @Date: 2024-04-07 10:14:17
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-04-18 09:41:49
* @FilePath: /fxPark/src/router/routes/modules/fxPark/index.js
* @Description: 文件描述
*/
const index = [{
path: '/',
name: '“碳寻”复兴公园',
component: () => import('@/views/fxPark/index.vue'),
redirect: '',
meta: {
title: '“碳寻”复兴公园',
},
children: [],
}, {
path: '/audio',
name: '植物之声',
component: () => import('@/views/fxPark/audio.vue'),
redirect: '',
meta: {
title: '植物之声',
},
children: [],
}, {
path: '/intro',
name: '植被介绍',
component: () => import('@/views/fxPark/intro.vue'),
redirect: '',
meta: {
title: '植被介绍',
},
children: [],
}, {
path: '/share',
name: '生成海报±',
component: () => import('@/views/fxPark/share.vue'),
redirect: '',
meta: {
title: '生成海报±',
},
children: [],
}, {
path: '/poster',
name: '我的海报',
component: () => import('@/views/fxPark/poster.vue'),
redirect: '',
meta: {
title: '我的海报',
},
children: [],
}, {
path: '/finish',
name: '分享海报',
component: () => import('@/views/fxPark/finish.vue'),
redirect: '',
meta: {
title: '分享海报',
},
children: [],
}, {
path: '/exhibition',
name: '展览介绍',
component: () => import('@/views/fxPark/exhibition.vue'),
redirect: '',
meta: {
title: '展览介绍',
},
children: [],
}]
export default index;