[Vuejs]-Dropzone.js autoProcessQueue not working within Vue component

0๐Ÿ‘

โœ…

I found a work-around, which I would guess is not recommended. If someone knows a better one, please comment.

I had to edit the dropzone.js source code and set the autoProcessQueue = false, like so:

enter image description here

I think the local setting of the dropzone object is not being able to override the global autoProcessQueue config.

Leave a comment