gtsoft-snail-job-server/frontend/src/router/index.js
byteblogs168 2d18ff42a8 fix: 2.6.0
1. 修复判定节点显示错误问题
2024-01-29 22:04:55 +08:00

19 lines
529 B
JavaScript

import Vue from 'vue'
import Router from 'vue-router'
import { constantRouterMap } from '@/config/router.config'
// hack router push callback
const originalPush = Router.prototype.push
Router.prototype.push = function push (location, onResolve, onReject) {
if (onResolve || onReject) return originalPush.call(this, location, onResolve, onReject)
return originalPush.call(this, location).catch(err => err)
}
Vue.use(Router)
export default new Router({
base: '/easy-retry/',
mode: 'hash',
routes: constantRouterMap
})