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}`); api.addRuntimePlugin(() => `@@/${absRuntimeFilePath}`);
}; };

View File

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