消除Vue重复路由报错

2022/8/28 23:22:53

本文主要是介绍消除Vue重复路由报错,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

在VUE中路由遇到Error: Avoided redundant navigation to current location:报错显示是路由重复

在router文件夹下的index.js中加入如下代码,错误消失

const originalPush = VueRouter.prototype.push
   VueRouter.prototype.push = function push(location) {
   return originalPush.call(this, location).catch(err => err)
}


这篇关于消除Vue重复路由报错的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程