美文网首页
vue router 报错: Uncaught (in prom

vue router 报错: Uncaught (in prom

作者: 凌康ACG | 来源:发表于2019-08-22 16:34 被阅读0次

vue router 报错: Uncaught (in promise) NavigationDuplicated {_name:""NavigationDuplicated"... 的解决方法
最近在项目中,发现点击路由跳转相同地址会有这个报错

image.png

解决办法

在main.js下添加:

import Router from 'vue-router'
Vue.use(Router)
const originalPush = Router.prototype.push
Router.prototype.push = function push(location) {
  return originalPush.call(this, location).catch(err => err)
}
image.png

相关文章

网友评论

      本文标题:vue router 报错: Uncaught (in prom

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