12345678910111213141516171819 |
- import Layout from '@/layout'
- export default {
- path: '/home',
- component: Layout,
- redirect: 'noRedirect',
- meta: { roles: ['gzt'] },
- children: [{
- path: '',
- component: () => import('@/views/home/index'),
- name: 'Home',
- meta: {
- title: '工作台',
- icon: 'shouye',
- affix: true
- }
- }]
- }
|