vue-router在3.0版本以上element ui导航栏重复点击报错的问题

第一种方法:
在路由的index.js文件中添加如下代码:

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

第二种方法:
将vue-router的版本降到3.0

yarn add [email protected]

两种方法都可以解决报错的问题.

你可能感兴趣的:(vue-router在3.0版本以上element ui导航栏重复点击报错的问题)