赞
踩
vue使用elementui的菜单,重复点击相同的菜单报错,报错页面如下:
解决办法:
在项目src/router/index.js文件中修改,在Vue.use(Router);
前面添加:
const originalPush = Router.prototype.push
Router.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}
即:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。