Skip to content

throttle 节流函数

source

ts
import { throttle } from 'fe-toolsbox'
const count = ref(0)
const throttleFn = throttle(() => {
  count.value++
}, 1000)
0

fe-toolsbox 前端业务常用工具库