vue3 添加防抖节流 throttle-debounce

2,080 阅读1分钟

安装

npm install throttle-debounce -save

引入

import { debounce } from 'throttle-debounce'

使用

handleZan: debounce(1000, false, async(e: any) => {
   something...
})