I\'m using Vue in my application and I would like to know how to submit a form but avoid redirection. According to the official Vue doc it can be achieved in the following w
Just use @submit.prevent (without any equal signs).
@submit.prevent
Then, define @click="doAction()" on the button.
@click="doAction()"