解决ElementUI导航栏重复点菜单报错问题

可以在router的配置文件中(router -> index.js)加上下面这句话,注意位置: 放在new VueRouter() 上面

// 解决ElementUI导航栏中的vue-router在3.0版本以上重复点菜单报错问题

import VueRouterfrom 'vue-router'
const originalPush = VueRouter.prototype.push
VueRouter.prototype.push = function push(location) {
  return originalPush.call(this, location).catch(err => err)
}

 

你可能感兴趣的:(Vue)