美文网首页
vue路由重复问题

vue路由重复问题

作者: 王远清orz | 来源:发表于2020-10-08 11:05 被阅读0次

报错:
Avoided redundant navigation to current location:

Snipaste_2020-10-08_11-03-05.png

Vue.use(VueRouter);后面加

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

相关文章

网友评论

      本文标题:vue路由重复问题

      本文链接:https://www.haomeiwen.com/subject/pdwcpktx.html