index.js 1.19 KB
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
  },
}];