Newer
Older
smartKitchenFront / src / router / modules / example.js
liuyangyingjie on 26 Oct 2022 462 bytes first commit
/* Layout */
import Layout from '@/layout/Layout'
export const exampleRouters = [{
  path: 'example',
  component: Layout,
  redirect: '/exampleTable',
  name: 'Example',
  alwaysShow: true,
  meta: {
    title: '示例11',
    icon: 'icon-user' // 图标
  },
  children: [
    {
      path: '/exampleTable',
      name: 'ExampleTable',
      component: () => import('@/views/example/tableExample'),
      meta: { title: '表格示例', icon: '' }
    }
  ]
}]