[Vuejs]-How to add an uploaded file to a list of already uploaded files in Vue?

0👍

As far as i understood your question you need a way to pass a file from browser interface to your staticCampaignCSVSelected(file) method. If so why not to use an input model or a simple event or a watcher. E.g.

<input type="file" @input="staticCampaignCSVSelected($event.target.files[0])" />

But also i see a mistake in your code. You should append .then().catch() callbacks to axios.post() itself but not to Campaign.uploadStaticCSV() method.

And

return axios.post()

will not return a server response. You have to handle it in

axios.post().then(response => {})

callback

Leave a comment