|
|
@@ -322,7 +322,7 @@ router.beforeEach(async (to, from, next) => {
|
|
|
const originalPush = VueRouter.prototype.push
|
|
|
VueRouter.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)
|
|
|
+ return originalPush.call(this, location)
|
|
|
}
|
|
|
|
|
|
router.afterEach(to => {
|