Skip to content

v-longpress

Function Introduction

Trigger event when long pressing an element

Example

Usage

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

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

Released under the MIT License.