介绍

长时间按压触发回调

示例

代码

<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>