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
Source:stackexchange.com