在el-upload 使用 scoped-slot 时会删除无效
解决方案如图~
这样写删除可以了
handleRemove(file) { console.log(file); let fileList = this.$refs.upload.uploadFiles; let index = fileList.findIndex((fileItem) => { return fileItem.uid === file.uid; }); fileList.splice(index, 1); },
this.$refs.upload.uploadFiles;就是 :file-list="fileList"的fileList
欢迎同学提建议~