vue+element错误集锦
element menu导航路由点击报错
解决方法:
在路由配置文件中router/index.js中引入如下代码
const originalPush = Router.prototype.push;
Router.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err);
};
升级脚手架版本
npm i vue-router@3.0 -S
element table表头错位问题
body .el-table th.gutter{
display: table-cell!important;
}
还没有评论,来说两句吧...