123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- import Layout from '@/layout'
- const headhunting = [
- {
- path: '/headhunting',
- component: Layout,
- meta: {
- title: '门墩儿猎寻服务'
- },
- children: [
- {
- path:'/headhunting',
- component: () => import('@/views/headhunting/index.vue')
- }
- ]
- },
- {
- path: '/headhunting/service',
- component: Layout,
- meta: {
- title: '我们的服务'
- },
- children: [
- {
- path: '/headhunting/service',
- component: () => import('@/views/headhunting/service.vue')
- }
- ]
- },
- {
- path: '/headhunting/service/details',
- component: Layout,
- meta: {
- title: '门墩儿猎寻服务'
- },
- children: [
- {
- path: '/headhunting/service/details',
- component: () => import('@/views/headhunting/details.vue')
- }
- ]
- }
- ]
- export default headhunting
|