vue-dropzone
vue-dropzone copied to clipboard
A Vue.js component for Dropzone.js - a drag’n’drop file uploads utility with image previews
I would like to cancel uploading files programmatically with a user event (clicking a stop button while uploading). How can I accomplish it?
Trying to upload the same file twice results in an error. Can be reproduced with the online demo at https://rowanwins.github.io/vue-dropzone/docs/dist/#/demo ``` TypeError: this.files[t].lastModifiedDate is undefined ``` reference: https://developer.mozilla.org/en-US/docs/Web/API/File/lastModifiedDate
I'm following the example for S3 direct upload, and I've also specified `acceptedFiles` in the dropzoneOptions config object. I can see the uploaded file shown as an error, however it...
If I have set `parallelUploads` as 10 and I drag & drop 1000 files in the dropzone, then all of the requests for 1000 are submitted to the backend &...
I'm trying to send several options such as file size, max nb of files, etc but these options seems to be completly ignored. Here are the parameters I'm testing: `dropzoneOptions:...
Hi, Im using the s3 direct upload option. ``` ``` In my data I have: ``` data: function() { return { awss3: { signingURL: f => { this.getSigningUrl(f); }, }...
At first I like to say, thanks for all the hard work @rowanwins and all the others!! I'm using your package and it works perfectly except for one thing. I'm...
What we have done is that the filelist is a self-made style. There is a re upload button after the file upload fails. I want to use js to control...
Hi, File-Upload works fine on desktop and any Android tested so far, but on IOS file is sent with size 0 when it comes from the gallery or the camera....
To facilitate a drop-in replacement for our existing code without changing our server side code, we'd like to have a way to customise the getSignedURL functionality so that we have...