Blame view

apps/pages/article/index.js 574 Bytes
陈峰 authored
1
export default [{
陈峰 authored
2
  path: '/article/:id',
陈峰 authored
3
  name: 'article',
陈峰 authored
4
  alias: '/article/:id',
陈峰 authored
5 6 7 8 9
  component: () => import(/* webpackChunkName: "article" */ './article'),
  meta: {
    keepAlive: true
  }
}, {
陈峰 authored
10
  path: '/topic/:labelId',
陈峰 authored
11
  alias: '/topic/:labelId',
陈峰 authored
12 13
  name: 'topic',
  component: () => import(/* webpackChunkName: "article" */ './topic'),
陈峰 authored
14 15 16
  meta: {
    keepAlive: true
  }
陈峰 authored
17 18
}, {
  path: '/article/:articleId/comment',
陈峰 authored
19
  alias: '/article/:articleId/comment',
陈峰 authored
20 21
  name: 'article.comment',
  component: () => import(/* webpackChunkName: "article" */ './article-comment'),
陈峰 authored
22
}];