12345678910111213141516171819 |
- import Layout from '@/views/layout/Layout'
-
- export default {
- path: '/role/manage',
- component: Layout,
- name:'roleManage',
- redirct: '/role/manage',
- children: [{
- path: '/role/manage',
- component: () => import('@/xt_pages/role/role'),
- name: 'roleManage',
- meta: {
- title: 'roleManage',
- noCache: true,
-
- }
- },]
- }
|