• This project
    • Loading...
  • Sign in

Hooke / tswj

Itomix
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • tswj
  • src
  • router
  • routes
  • modules
  • business
  • test.js
  • hookehuyr's avatar
    路由模块分类重构 · b297e891
    b297e891 Browse Files
    hookehuyr authored 2022-05-25 18:34:34 +0800
test.js 379 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
const test = [{
  path: '/router/test1',
  name: 'test1',
  component: () => import('@/views/about.vue'),
  redirect: '',
  meta: {
    icon: '',
    title: '',
  },
  children: [],
}, {
  path: '/router/test2',
  name: 'test2',
  component: () => import('@/views/about.vue'),
  redirect: '',
  meta: {
    icon: '',
    title: '',
  },
  children: [],
}];

export default test;