[Vuejs]-Page reload after uploading files using formData

0👍

if you use button tag to call your method you should add type="button" to button tag:

<button type="button" @click="submitForm" > send file</button>

and if you have form tag you should do this:

<form @submit.prevent action="submitForm">

// form body
</form>

thats should work

Leave a comment