Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. routes: [
  2. {
  3. path: '/',
  4. name: 'air',
  5. component: () => import('@/views/dashboard/index.vue'),
  6. children: [
  7. {
  8. path: '/top',
  9. name: 'airTop',
  10. component: () => import('@/views/dashboard/top.vue')
  11. },
  12. {
  13. path: '/left',
  14. name: 'airLeft',
  15. component: () => import('@/views/dashboard/left.vue')
  16. },
  17. {
  18. path: '/right',
  19. name: 'airRight',
  20. component: () => import('@/views/dashboard/right.vue')
  21. }
  22. ]
  23. }
  24. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement