feat: patchRoutes延后,放在createRouter之前执行

This commit is contained in:
harrywan 2021-06-25 15:43:04 +08:00
parent ac0e7b47a4
commit b4fe951859
2 changed files with 8 additions and 9 deletions

View File

@ -1,5 +1,5 @@
{
"version": "2.0.0",
"version": "independent",
"changelog": {
"repo": "WeBankFinTech/fes.js",
"cacheDir": ".changelog",

View File

@ -3,13 +3,6 @@ import { plugin } from '@@/core/coreExports';
export function getRoutes() {
const routes = {{{ routes }}};
plugin.applyPlugins({
key: 'patchRoutes',
type: ApplyPluginsType.event,
args: { routes },
});
return routes;
}
@ -28,7 +21,13 @@ export const createRouter = (routes) => {
},
initialValue: {{{ CREATE_HISTORY }}},
});
history = createHistory(ROUTER_BASE)
history = createHistory(ROUTER_BASE);
// 修改routes
plugin.applyPlugins({
key: 'patchRoutes',
type: ApplyPluginsType.event,
args: { routes },
});
router = createVueRouter({
history,
routes