Event Listeners
Event Listeners#
We can listen to DOM events using the v-on directive:
<button v-on:click="increment">{{ count }}</button>
Due to its frequent use, v-on also has a shorthand syntax:
<button @click="increment">{{ count }}</button>
Here, `increment` is referencing a function declared in `
Inside the function, we can update the component state by mutating refs.
</div>
<div class="html">
Here, `increment` is referencing a method in the object returned from `setup()`:
```js{$}
setup() {
const count = ref(0)
function increment(e) {
// update component state
count.value++
}
return {
count,
increment
}
}
Event handlers can also use inline expressions, and can simplify common tasks with modifiers. These details are covered in Guide - Event Handling.
Now, try to implement the increment function yourself and bind it to the button using v-on.