element-ui——el-upload 上传成功后清空文件

<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()
    }
}


猜你喜欢

转载自blog.csdn.net/qq_43201350/article/details/121416924
今日推荐