vue3中addRoute添加的路由只能添加到根部,如何添加子路由

初始路由如下

const routes = [
  {
    path: "/login",
    name: "Login",
    component: () => import("@/views/Login.vue"),
  },

  {
    path: "/layout",
    name: "Layout",
    component: () => import("@/layout/AppMain.vue"),
    children: [
      {
        path: "/401",
        name: "401",
        component: () => import("@/views/error/401.vue"),
        icon: "",
      },
      {
        path: "/404",
        name: "404",
        component: () => import("@/views/error/404.vue"),
      },
    ],
  },
];

动态添加的路由

const routeObj = {
    path: "/layout/test", // 这里用layout/test,/test, test都是一样的结果
    name: "test",
    meta: { title: "测试路由test", noCache: true },
    component: () => import("@/views/error/404.vue"),
  };

  router.addRoute(routeObj);或者router.addRoute('Layout', routeObj)一样不能添加到Layout子路由中

请大神解惑

阅读 5.6k
1 个回答

把layout路由也作为动态来添加,再把layout/test作为children,再addRoute

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题