Contribute
Communication
Concerning
English
Appearance
Trigger an event on double-click
Double click me
<script setup lang="ts"> const handle = () => { window.alert('Triggered an event') } </script> <template> <button v-doubleClick="handle">Double click me</button> </template>