headhunting.js 867 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. import Layout from '@/layout'
  2. const headhunting = [
  3. {
  4. path: '/headhunting',
  5. component: Layout,
  6. meta: {
  7. title: '门墩儿猎寻服务'
  8. },
  9. children: [
  10. {
  11. path:'/headhunting',
  12. component: () => import('@/views/headhunting/index.vue')
  13. }
  14. ]
  15. },
  16. {
  17. path: '/headhunting/service',
  18. component: Layout,
  19. meta: {
  20. title: '我们的服务'
  21. },
  22. children: [
  23. {
  24. path: '/headhunting/service',
  25. component: () => import('@/views/headhunting/service.vue')
  26. }
  27. ]
  28. },
  29. {
  30. path: '/headhunting/service/details',
  31. component: Layout,
  32. meta: {
  33. title: '门墩儿猎寻服务'
  34. },
  35. children: [
  36. {
  37. path: '/headhunting/service/details',
  38. component: () => import('@/views/headhunting/details.vue')
  39. }
  40. ]
  41. }
  42. ]
  43. export default headhunting