Skip to content

useDebounce(防抖)

ts
import { useDebounce } from 'velo-kit'

const clickEvent = useDebounce(() => {
  // ...
}, delay)

// 300毫秒内只会执行一次

options参数

参数说明类型默认值
fn函数function-
delay延迟时间number300

MIT Licensed