<el-upload action="#" ref="upload" list-type="picture" :show-file-list="true" :limit="1" :http-request="handleUpload">
<el-button size="small" type="primary">上传</el-button>
</el-upload>
<button @click="doClear">
清空
</button>
methods: {
doClear () {
this.$refs.upload.clearFiles()
}
}