其他分享
首页 > 其他分享> > 解决ElementUI导航栏中的vue-router在3.0版本以上重复点击菜单报错问题

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

作者:互联网

在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)
}

 

标签:栏中,vue,报错,3.0,Router,push,router
来源: https://www.cnblogs.com/junjunzai/p/15639044.html