[Solved] browser only downloads 10 images at once (JS) [closed]

I’m not sure what you are trying to do, but if there is a restriction on the number of simultaneous downloads, why not try setting a timeout so they don’t fire at the same time? transferFiles(){ this.checkMark = true let i = 0 this.finalImages.forEach((image) =>{ setTimeout(function(){ saveAs(image, ‘imagem’+(i+1)); }, i++ * 500); }); } 3 … Read more

[Solved] Passing Vue data to php

Have you tried binding property with attribute name? <input type=”text” value=”” :attribute-name=”props.correct” class=”d-none” name=”correct”> 2 solved Passing Vue data to php