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": { "changelog": {
"repo": "WeBankFinTech/fes.js", "repo": "WeBankFinTech/fes.js",
"cacheDir": ".changelog", "cacheDir": ".changelog",

View File

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