Blame view
src/router/modules/meta.js
596 Bytes
50760eab9 auto commit the c... |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
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 |