feat(plugin-access): 优化路由切换时无权限的处理:存在处理器时不默认next(false)

This commit is contained in:
万纯 2021-03-03 19:45:48 +08:00
parent 3da70fc0be
commit 998531f878

View File

@ -19,9 +19,12 @@ export function onRouterCreated({ router }) {
initialValue: {}
});
if (runtimeConfig.noAccessHandler && typeof runtimeConfig.noAccessHandler === 'function') {
runtimeConfig.noAccessHandler(router, to, from);
runtimeConfig.noAccessHandler({
router, to, from, next
});
} else {
next(false);
}
next(false);
}
});
}