meta.js 596 Bytes
import Layout from '@/layout'

const metaRouter = {
  path: '/meta',
  component: Layout,
  redirect: '/meta/page',
  alwaysShow: true, // will always show the root menu
  name: 'Meta',
  meta: {
    title: 'metas.metas',
    icon: 'zip',
    roles: ['admin', 'assistant'] // you can set roles in root nav
  },
  children: [{
    path: 'page',
    component: () => import('@/views/meta/complex-table'),
    name: 'MetaList',
    meta: {
      title: 'MetaList',
      icon: 'zip',
      roles: ['admin', 'assistant'] // or you can only set roles in sub nav
    }
  }]
}
export default metaRouter