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