官方例子会出现若是更换屡次头像的话,就会上传屡次。javascript
当使用手动上传时候,会出现若是点击更换头像3次的话,上传时候会将3次更换的头像所有上传。java
解决方法就是:this
handleChange(file, fileList) { this.$refs.upload.clearFiles(); this.$refs.upload.uploadFiles.push(file); this.imageUrl = file.url; },