0👍
Maybe you can use the event modifiers to prevent page reloading, examples are…
<button type="submit" v-on:click.prevent="addLike" >
<button type="submit" v-on:submit.prevent="addLike">
or if you want to use the shorthand
<button type="submit" @click.prevent="addLike" >
<button type="submit" @submit.prevent="addLike">
Hope this helps.
Source:stackexchange.com