答案 0 :(得分:1)
您可以在before-upload
中确定是否上传。如果图片大小小于1MB,请取消上传。
<el-upload>
:before-upload="isImageValid"
</el-upload>
methods: {
isImageValid(image) {
const imageSize = image.size / Math.pow(1024, 2)
if (imageSize < 1) return false
return true
}
}