Vue allows event handling with v-on or its shorthand @.
v-on
@
<button @click="increment">Click Me</button>
methods: { increment() { this.count++; } }