lodash防抖与节流

sgj191024 / 2023-08-03 / 原文

import _ from "lodash"
 
// 节流
        // change:_.throttle(function(){
        //     console.log(123);
        // },1000)

        // 防抖
        change:_.debounce(function(){
            console.log(123);
        },1000)