
解决跳转不让重定向问题:
将此段代码粘贴到:

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);
};
本文介绍了如何修改VueRouter的push方法,以防止页面跳转时的自动重定向,并在发生错误时进行捕获和处理。
1652





