Newer
Older
sanitationFront / src / router / modules / sanitation.js
StephanieGitHub on 22 Dec 2020 459 bytes MOD:人员管理初稿
/* Layout */
import Layout from '@/layout/Layout'
export const sanitationRouters = [{
  path: 'stuff',
  component: Layout,
  redirect: '/stufflist',
  name: 'Stuff',
  alwaysShow: true,
  meta: {
    title: '人员管理',
    icon: 'icon-config' // 图标
  },
  children: [
    {
      path: '/stufflist',
      name: 'StuffList',
      component: () => import('@/views/stuffManage/stuffList'),
      meta: { title: '人员列表', icon: '' }
    }
  ]
}]