index.js
1.19 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
export default [{
path: '/author/:type/:id',
alias: '/author/:type/:id',
name: 'author',
component: () => import(/* webpackChunkName: "author" */ './author'),
meta: {
keepAlive: true
}
},
{
path: '/author/mine',
alias: '/author/mine',
name: 'author.mine',
component: () => import(/* webpackChunkName: "author" */ './author-mine'),
meta: {
keepAlive: true
},
},
{
path: '/author/follow/:type/:id',
alias: '/author/follow/:type/:id',
name: 'author.follow',
component: () => import(/* webpackChunkName: "authorFollow" */ './author-follow'),
meta: {
keepAlive: true
},
},
{
path: '/author/fans/:type/:id',
alias: '/author/fans/:type/:id',
name: 'author.fans',
component: () => import(/* webpackChunkName: "authorFans" */ './author-fans'),
meta: {
keepAlive: true
},
},
{
path: '/mine/follow',
alias: '/mine/follow',
name: 'mine.follow',
component: () => import(/* webpackChunkName: "authorFollow" */ './author-follow'),
meta: {
keepAlive: true
},
},
{
path: '/mine/fans',
alias: '/mine/fans',
name: 'mine.fans',
component: () => import(/* webpackChunkName: "authorFans" */ './author-fans'),
meta: {
keepAlive: true
},
}];