Skip to content

Commit

Permalink
fix(router): the issue of blank page navigation during repair of non-…
Browse files Browse the repository at this point in the history
…LAYOUT first-level route component (#3764)
  • Loading branch information
cszhjh authored Apr 19, 2024
1 parent 87541da commit c58c192
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/router/helper/routeHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,8 @@ export function transformObjToRoute<T = AppRouteModule>(routeList: AppRouteModul
warn('找不到菜单对应的name, 请检查数据!' + JSON.stringify(route));
}
route.name = `${route.name}Parent`;
// 重定向到当前路由,以防空白页面
route.redirect = route.path;
route.path = '';
const meta = route.meta || {};
meta.single = true;
Expand Down

0 comments on commit c58c192

Please sign in to comment.