在router文件夹下的index.js文件加入如下代码:
import Router from 'vue-router' // 解决ElementUI导航栏中的vue-router在3.0版本以上重复点击菜单报错问题 const originalPush = Router.prototype.push Router.prototype.push = function push(location) { return originalPush.call(this, location).catch(err => err) }