wwf
昨天 34f5733bc1f126c572580fa849b9403dfcddd84b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import home from '@/router/main/home/index.js'
import notice from '@/router/main/notice/index.js'
import appraisalPlan from '@/router/main/appraisalPlan'
 
const mainRouter = [
  ...home,
  ...notice,
  ...appraisalPlan
]
const router = [
  {
    path: '/main',
    name: '用户端',
    component: () => import('@/views/main/index.vue'),
    children: mainRouter,
  },
]
export default router