Event Handling

Vue allows event handling with v-on or its shorthand @.

Snippet:

<button @click="increment">Click Me</button>

Example:

methods: { increment() { this.count++; } }