v-on éisteann le himeachtaí DOM (cliceanna, ionchur, brúnna eochracha) agus roinneann sé fréamhshamhail. Is é a ghiorruthe ná @.
<script setup>
import { ref } from "vue";
const count = ref(0);
function increment() { count.value++; }
</script>
<template>
<button v-on:click="increment">Full syntax</button>
<button @click="increment">Shorthand (idiomatic)</button>
<button @click="count++">Inline expression</button>
<button @click="increment($event, 'extra')">Pass args + the event</button>
</template>
Is féidir leat ainm modhanna, slonn i líne, nó modh a ghairm le hargóintí a roinnt. Tá an réad imeachta nádúrtha ar fáil mar .
