Newer
Older
h2sFront / src / router / modules / example.js
StephanieGitHub on 12 Aug 2021 462 bytes MOD: vue-cli2代码迁移
/* Layout */
import Layout from '@/layout/Layout'
export const exampleRouters = [{
  path: 'example',
  component: Layout,
  redirect: '/exampleTable',
  name: 'Example',
  alwaysShow: true,
  meta: {
    title: '示例',
    icon: 'icon-config' // 图标
  },
  children: [
    {
      path: '/exampleTable',
      name: 'ExampleTable',
      component: () => import('@/views/example/tableExample'),
      meta: { title: '表格示例', icon: '' }
    }
  ]
}]