From f0d60a82420a7157d643b84fb80175caa7e821eb Mon Sep 17 00:00:00 2001 From: fqucuo Date: Sun, 24 Jan 2021 00:19:22 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BC=82=E6=AD=A5=E8=B7=AF=E7=94=B1=E4=B8=AD?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=AF=B9beforeEnter=E7=9A=84=E8=A7=A3?= =?UTF-8?q?=E6=9E=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 异步路由中增加对beforeEnter的解析 --- src/utils/routerUtil.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/utils/routerUtil.js b/src/utils/routerUtil.js index 037cb10..6f0b148 100644 --- a/src/utils/routerUtil.js +++ b/src/utils/routerUtil.js @@ -56,6 +56,9 @@ function parseRoutes(routesConfig, routerMap) { link: routeCfg.link || router.link || routeCfg.meta?.link || router.meta?.link } } + if (router.beforeEnter) { + route.beforeEnter = router.beforeEnter + } if (routeCfg.invisible || router.invisible) { route.meta.invisible = true }