解决 Vue 前端报错 Uncaught (in promise) Error: Navigation cancelled from “/…“ to “/…“ with a new navigation 问题。
如下图所示:
如何解决该问题,需要在 index.js 文件中添加如下代码:
const originalPush = VueRouter.prototype.push; VueRouter.prototype.push = function push(location) { return originalPush.call(this, location).catch((err) => err); };