vue中上传图片限制大小、宽高

imgReady(data.object, function () {
if(this.width < 360 || this.height < 360) {
document.getElementById("myImageShow").src = "../../public/img/background.png";
alert("图片大小不能低于360*360PX");
}
if(this.width != this.height) {
document.getElementById("myImageShow").src = "../../public/img/background.png";
alert("上传图片比例为1:1");
}
});
原文地址:https://www.cnblogs.com/wangbiubiu/p/9328321.html