TDCODE_TH/vue-cil/src/router/modules/masterRouter.js
2023-06-19 11:41:18 +08:00

20 lines
407 B
JavaScript

import Layout from '@/layout'
const masterRouter = {
path: '/master',
component: Layout,
redirect: 'noRedirect',
alwaysShow: true,
name: 'master',
meta: { title: 'authority', icon: 'lock' },
children: [
{
path: '/master',
component: () => import('@/views/master/master'),
name: 'master',
meta: { icon: 'el-icon-postcard' }
},
]
}
export default masterRouter