/* Layout */ import Layout from '@/layout/Layout' export const operationManagement = [{ path: 'operationManagement', component: Layout, redirect: '/exampleTable', // 重定向 name: 'OperationManagement', alwaysShow: true, meta: { title: '运营管理', icon: '运营管理' // 图标 }, children: [ { path: '/exampleTable', name: 'ExampleTable', component: () => import('@/views/example/tableExample'), //重定向的组件位置 meta: { title: '表格示例', icon: '' } } ] }]