vue-dropzone
vue-dropzone copied to clipboard
Manually adding a file triggers the vdropzone-queue-complete event
I'm adding a file manually using the following commands and i see that the vdropzone-queue-complete
gets fired
mounted: () {
var file = { size: 123, name: "Icon", type: "image/png" };
var url = "https://myvizo.com/img/logo_sm.png";
this.$refs.myVueDropzone.manuallyAddFile(file, url);
}
Is this the expected behavior?
I'm using the vdropzone-queue-complete
to know when all files have finished uploading.
Edit: Using version 3.6.0