[Vuejs]-File upload form with Vue JS & Laravel – trying to show list of uploaded files?

0👍

What do you mean to display the image to be uploaded? You can use the FileReader API for this problem. But on the other hand, if you want to display the results of the uploaded image you can provide a response from your API Laravel in the form of an image link to front-end and display it on the Vue component via a callback.

API FileReader: https://www.javascripture.com/FileReader

Leave a comment