feat: use the not-found component instead of the invalid route component in the backend mode (#5871)

* 后端菜单模式下,使用not-found组件代替无效的路由组件
pull/68/head
Netfan 2025-04-04 15:21:09 +08:00 committed by YunaiV
parent 3086b83834
commit fe6e19d763
1 changed files with 1 additions and 0 deletions

View File

@ -64,6 +64,7 @@ function convertRoutes(
route.component = pageMap[pageKey];
} else {
console.error(`route component is invalid: ${pageKey}`, route);
route.component = pageMap['/_core/fallback/not-found.vue'];
}
}