feat: 提供getHistory获取history

This commit is contained in:
wanchun 2021-03-27 23:39:16 +08:00
parent 6e27828b9f
commit 6b7dc0324a
2 changed files with 12 additions and 7 deletions

View File

@ -293,7 +293,7 @@ export default function (api) {
api.addCoreExports(() => [
{
specifiers: ['getRoutes', 'getRouter'],
specifiers: ['getRoutes', 'getRouter', 'getHistory'],
source: absCoreFilePath
}
]);

View File

@ -3,7 +3,7 @@ import { plugin } from '@@/core/coreExports';
export function getRoutes() {
const routes = {{{ routes }}};
plugin.applyPlugins({
key: 'patchRoutes',
type: ApplyPluginsType.event,
@ -15,14 +15,15 @@ export function getRoutes() {
const ROUTER_BASE = '{{{ routerBase }}}';
let router = null;
let history = null;
export const createRouter = () => {
if (router) {
return router;
return router;
}
const history = {{{ CREATE_HISTORY }}}(ROUTER_BASE)
history = {{{ CREATE_HISTORY }}}(ROUTER_BASE)
router = createVueRouter({
history,
routes: getRoutes()
history,
routes: getRoutes()
});
plugin.applyPlugins({
@ -36,4 +37,8 @@ export const createRouter = () => {
export const getRouter = ()=>{
return router;
}
}
export const getHistory = ()=>{
return history;
}