Merge pull request #186 from fqucuo/patch-1

Optimization: Add beforeEnter parsing to asynchronous routing;
优化:异步路由中增加对beforeEnter的解析;
This commit is contained in:
iczer 2023-03-29 10:51:14 +08:00 committed by GitHub
commit cc60ff1a27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -75,6 +75,9 @@ function parseRoutes(routesConfig, routerMap) {
redirect: routeCfg.redirect || router.redirect,
meta: {...meta, authority: meta.authority || '*'}
}
if (router.beforeEnter) {
route.beforeEnter = router.beforeEnter
}
if (routeCfg.invisible || router.invisible) {
route.meta.invisible = true
}