vue2 使用lodash进行防抖处理

import lodash from "lodash"



methods:{

    handleFunc: lodash.debounce(function(){

        // dosomething

    },200)

}