vue-dropzone
vue-dropzone copied to clipboard
How to cancel uploading files to S3?
I would like to cancel uploading files programmatically with a user event (clicking a stop button while uploading). How can I accomplish it?
Yes, how do we cancel uploading files?? Also how do we cancel uploading files to AWS?
Probably something like
const files = this.$refs.myVueDropzone.getUploadingFiles()
files[0].xhr.abort()
FOr AWS its probably trickier because our implementation is not very sophistaicated.
Underway in #549