...
|
...
|
@@ -7,18 +7,26 @@ export default [{ |
|
|
keepAlive: true
|
|
|
}
|
|
|
},{
|
|
|
path: '/article/share/:id',
|
|
|
name: 'article.share',
|
|
|
alias: '/article/share/:id',
|
|
|
component: () => import(/* webpackChunkName: "article" */ './article-detail-share'),
|
|
|
meta: {
|
|
|
keepAlive: true
|
|
|
}
|
|
|
}, {
|
|
|
path: '/article/list/:id',
|
|
|
name: 'article.list',
|
|
|
name: 'articlelist',
|
|
|
alias: '/article/list/:id',
|
|
|
component: () => import(/* webpackChunkName: "article" */ './article'),
|
|
|
component: () => import(/* webpackChunkName: "article-list" */ './article'),
|
|
|
meta: {
|
|
|
keepAlive: true
|
|
|
}
|
|
|
}, {
|
|
|
path: '/article/share/:id',
|
|
|
name: 'article.share',
|
|
|
alias: '/article/share/:id',
|
|
|
component: () => import(/* webpackChunkName: "article" */ './article-share'),
|
|
|
path: '/article/list/share/:id',
|
|
|
name: 'articlelist.share',
|
|
|
alias: '/article/list/share/:id',
|
|
|
component: () => import(/* webpackChunkName: "article-list" */ './article-share'),
|
|
|
meta: {
|
|
|
keepAlive: true
|
|
|
}
|
...
|
...
|
@@ -26,7 +34,7 @@ export default [{ |
|
|
path: '/article/detail/:id',
|
|
|
name: 'article.detail',
|
|
|
alias: '/article/detail/:id',
|
|
|
component: () => import(/* webpackChunkName: "article-detail" */ './article-detail'),
|
|
|
component: () => import(/* webpackChunkName: "article" */ './article-detail'),
|
|
|
meta: {
|
|
|
keepAlive: true
|
|
|
}
|
...
|
...
|
@@ -34,7 +42,7 @@ export default [{ |
|
|
path: '/article/:id/user/:type/:authorType/:authorUid',
|
|
|
name: 'article.user',
|
|
|
alias: '/article/:id/user/:type/:authorType/:authorUid',
|
|
|
component: () => import(/* webpackChunkName: "article" */ './user-article'),
|
|
|
component: () => import(/* webpackChunkName: "article-list" */ './user-article'),
|
|
|
meta: {
|
|
|
keepAlive: true
|
|
|
}
|
...
|
...
|
@@ -42,7 +50,7 @@ export default [{ |
|
|
path: '/topic/share/:topicId',
|
|
|
alias: '/topic/share/:topicId',
|
|
|
name: 'topic.share',
|
|
|
component: () => import(/* webpackChunkName: "article" */ './topic'),
|
|
|
component: () => import(/* webpackChunkName: "topic" */ './topic'),
|
|
|
meta: {
|
|
|
keepAlive: true
|
|
|
}
|
...
|
...
|
@@ -50,7 +58,7 @@ export default [{ |
|
|
path: '/topic/:topicId',
|
|
|
alias: '/topic/:topicId',
|
|
|
name: 'topic',
|
|
|
component: () => import(/* webpackChunkName: "article" */ './topic'),
|
|
|
component: () => import(/* webpackChunkName: "topic" */ './topic'),
|
|
|
meta: {
|
|
|
keepAlive: true,
|
|
|
statusBarColor: 'white'
|
...
|
...
|
|