!254 解决处理顶级非目录路由的组件名称逻辑缺失的问题
Merge pull request !254 from clockdotnet/master_pr
This commit is contained in:
commit
04a94ad941
@ -93,7 +93,10 @@ export const generateRoute = (routes: AppCustomRouteRecordRaw[]): AppRouteRecord
|
|||||||
meta.alwaysShow = true
|
meta.alwaysShow = true
|
||||||
const childrenData: AppRouteRecordRaw = {
|
const childrenData: AppRouteRecordRaw = {
|
||||||
path: '',
|
path: '',
|
||||||
name: toCamelCase(route.path, true),
|
name:
|
||||||
|
route.componentName && route.componentName.length > 0
|
||||||
|
? route.componentName
|
||||||
|
: toCamelCase(route.path, true),
|
||||||
redirect: route.redirect,
|
redirect: route.redirect,
|
||||||
meta: meta
|
meta: meta
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user