解决Vue前端报错Uncaught (in promise) Error: Navigation cancelled from “/…“ to “/…“ with a new navigation
解决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); };
声明:
本站所有文章教程及资源素材均来源于网络与用户分享或为本站原创,仅限用于学习和研究。
码云笔记 » 解决Vue前端报错Uncaught (in promise) Error: Navigation cancelled from “/…“ to “/…“ with a new navigation
本站所有文章教程及资源素材均来源于网络与用户分享或为本站原创,仅限用于学习和研究。
码云笔记 » 解决Vue前端报错Uncaught (in promise) Error: Navigation cancelled from “/…“ to “/…“ with a new navigation