vue-dropzone icon indicating copy to clipboard operation
vue-dropzone copied to clipboard

Manually adding a file triggers the vdropzone-queue-complete event

Open nklido opened this issue 3 years ago • 0 comments

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

nklido avatar Oct 27 '21 11:10 nklido