[Vuejs]-Laravel- VueJS image upload

0👍

In your input file use@change="sync

In vue create funcion

sync: function(e){
        e.preventDefault();
        this.newProducts.product_images = e.target.files;
        console.log(this.newProducts.product_images);
    },

I think it can help you! It will console all files you have!

Leave a comment