feat: plugin-access的运行时配置改为access

This commit is contained in:
万纯 2020-12-22 18:14:26 +08:00
parent 3e44f41933
commit 97c7739d02
2 changed files with 5 additions and 5 deletions

View File

@ -53,7 +53,7 @@ export default (api) => {
}
]);
api.addRuntimePluginKey(() => 'noAccessHandler');
api.addRuntimePluginKey(() => 'access');
api.addRuntimePlugin(() => `@@/${absRuntimeFilePath}`);
};

View File

@ -13,13 +13,13 @@ export function onRouterCreated({ router }) {
if (canRoute) {
next();
} else {
const noAccessHandler = plugin.applyPlugins({
key: "noAccessHandler",
const runtimeConfig = plugin.applyPlugins({
key: "access",
type: ApplyPluginsType.modify,
initialValue: null,
});
if (noAccessHandler && typeof noAccessHandler === "function") {
noAccessHandler(router, to, from);
if (runtimeConfig.noAccessHandler && typeof runtimeConfig.noAccessHandler === "function") {
runtimeConfig.noAccessHandler(router, to, from);
}
next(false);
}