Introduce

Keep clicking for a period of time and trigger the callback

Example

Code

<script setup lang="ts">
  const handle = () => {
    window.alert('long press')
  }
</script>

<template>
  <button v-longpress:1000="handle">Stay with me for a long time</button>
</template>