index.js 388 Bytes
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'),
  meta: {
    keepAlive: true
  }
}];