lodash防抖

import _ from "lodash";
const infoBoxDebounce = _.debounce(fc => fc(), 500, { leading: true });

//方法
clickMethod(){
  infoBoxDebounce(()=>{
  
    //代码块
 
 })
}

lodash防抖

你可能感兴趣的:(javascript)