lodash防抖与节流

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

        // 防抖
        change:_.debounce(function(){
            console.log(123);
        },1000)
posted @ 2023-08-03 01:18  sgj191024  阅读(84)  评论(0)    收藏  举报