Skip to content

v-debounce

功能介绍

防抖功能

示例

使用

typescript
<script setup lang="ts">
  const handle = () => {
    window.alert('触发了事件')
  }
</script>
<template>
  <button v-debounce="handle">快速点击我</button>
</template>

规则

参数类型默认说明
eventType事件修饰符click事件类型,可为空
delay时间,毫秒为单位300延迟时间,可为空
handleEvent--处理事件,必填

举例: v-debounce:click-1000="handle"

eventType: click

delay: 1000

handleEvent: handle

Released under the MIT License.