NavigationDuplicated: Avoided redundant navigation to current location: “/mine“解决方案
有关这个bug,我使用了一种比较简易有效的解决方案只需在router文件的index.js中添加以下代码即可:const originalPush = VueRouter.prototype.pushVueRouter.prototype.push = function push(location) {return originalPush.call(this, location).catch(e
·
有关这个bug,我使用了一种比较简易有效的解决方案
只需在router文件的index.js中添加以下代码即可:
const originalPush = VueRouter.prototype.push
VueRouter.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}
就可以解决了。。。。
更多推荐
已为社区贡献7条内容
所有评论(0)