Vue 路由报错 NavigationDuplicated: Navigating to current location is not allowed 解决方法
使用 Vue 2.x 开发项目,路由当然也是用的官方的路由,一直也是挺好用的,但是如果是相同的页面,也就是重复点击就会报错:
vue.esm.js?efeb:628 [Vue warn]: Error in v-on handler (Promise/async): "NavigationDuplicated: Navigating to current location ("/register?type=lawyer") is not allowed"
这种情况改写一下路由的 push 方法就可以了,将要跳转的 location 的路由放进去。
const routerPush = Router.prototype.push
Router.prototype.push = function push(location) {
return routerPush.call(this, location).catch(error=> error)
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论