vue3+vue-router4.0 动态路由 add-Route

vue3+vue-router4.0 动态路由 add-Route

用Vue3就必须用Router4.x版本,由于4.0去掉了addRoutes 所以只能用addRoute

现在是只能添加一个

function routerPackag(routers:any) {
  if (routers) {
    routers.filter((itemRouter:any) => {
      if (itemRouter.component != "Layout") {
        router.addRoute('home',{ //home是父组件 add-route添加进父组件chilren里
          path: `${itemRouter.path}`,
          name: itemRouter.name,
          meta: {
            title: itemRouter.name,
          },
          component: () => import(`../views/${itemRouter.component}`),
        })
      }
      if (itemRouter.children && itemRouter.children.length) {
        routerPackag(itemRouter.children)
      }
      return true
    })
  }
}

你可能感兴趣的:(笔记,vue)