/* Layout */ import Layout from '@/layout/Layout' export const overviewRouters = [ { path: 'overview', component: Layout, redirect: '/overview', name: 'Overview', alwaysShow: true, meta: { title: '地图总览', icon: 'icon-config' // 图标 }, children: [ { path: '/overview', name: 'Overview', component: () => import('@/views/overview/overview'), meta: { title: '点位预览', icon: '' } } ] }]