You can have multiple methods in an event handler separated by a comma operator like this:
<!-- both one() and two() will execute on button click -->
<button @click="one($event), two($event)">
Submit
</button>
// ...
methods: {
one(event) {
// first handler logic...
},
two(event) {
// second handler logic...
}
}