我用before-upload 里面调用lrz 这样不行 有没有其他方法
Vue.prototype.$checkImg = function(file){
//图片压缩
lrz(file,{width:400}).then(function (rst) {
return rst;
}).catch(function (err) {
}).always(function () {
});
}
自己写一个组件用canvas压缩取base64吧,element ui没法加这个功能。