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