Newer
Older
smartKitchenFront / src / router / modules / systemManagement.js
liuyangyingjie on 26 Oct 2022 525 bytes first commit
/* Layout */
import Layout from '@/layout/Layout'
export const systemManagement = [{
  path: 'systemManagement',
  component: Layout,
  redirect: '/exampleTable', // 重定向
  name: 'SystemManagement',
  alwaysShow: true,
  meta: {
    title: '系统管理',
    icon: 'icon-user' // 图标
  },
  children: [
    {
      path: '/exampleTable',
      name: 'ExampleTable',
      component: () => import('@/views/example/tableExample'), //重定向的组件位置
      meta: { title: '表格示例', icon: '' }
    }
  ]
}]