Skip to content

v-longpress

功能介绍

长按元素时触发事件

示例

使用

typescript
<script setup lang="ts">
  const handle = () => {
    window.alert('长按触发')
  }
</script>

<template>
  <button v-longpress:1000="handle">长按一段时间</button>
</template>

Released under the MIT License.