[Vuejs]-Dropzone attach only on the first element in vuejs

0👍

SOLVED!

Problems with multiple dropzone instances

This code was the key.

$(document).ready(function () {
Dropzone.autoDiscover = false;
$(".dropzone").each(function () {
    new Dropzone($(this).get(0), {url: "...."});
});

});

Leave a comment