欢迎访问 生活随笔!

生活随笔

当前位置: 首页 > 前端技术 > vue >内容正文

vue

Vue组件多次点击报错Avoided redundant navigation to current location: “/profile“.

发布时间:2024/10/14 vue 80 豆豆
生活随笔 收集整理的这篇文章主要介绍了 Vue组件多次点击报错Avoided redundant navigation to current location: “/profile“. 小编觉得挺不错的,现在分享给大家,帮大家做个参考.


报错提示profile组件避免了到当前位置的冗余导航。
在VueRouter后添加
const originalPush = VueRouter.prototype.push
VueRouter.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}


解决报错

总结

以上是生活随笔为你收集整理的Vue组件多次点击报错Avoided redundant navigation to current location: “/profile“.的全部内容,希望文章能够帮你解决所遇到的问题。

如果觉得生活随笔网站内容还不错,欢迎将生活随笔推荐给好友。