/* Layout */ import Layout from '@/layout/Layout' export const accountManagemant = [{ path: 'accountManagemant', component: Layout, redirect: '/exampleTable', // 重定向 name: 'AccountManagemant', alwaysShow: true, meta: { title: '账号管理', icon: '账号管理' // 图标 }, children: [ { path: '/stateView', name: 'StateView', component: () => import('@/views/account/stateView'), //重定向的组件位置 meta: { title: '状态查看', icon: '' } }, { path: '/information', name: 'Information', component: () => import('@/views/account/information'), //重定向的组件位置 meta: { title: '信息填报', icon: '' } } ] }]