Newer
Older
smartcity_env_front / src / router / modules / overview.js
[wangxitong] on 22 Jul 2021 495 bytes first commit
/* 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: '' }
      }
    ]
  }]