vue中使用lodash的debounce防抖


data() {
    return {
        handleClick: null,
    };
},

created() {
    this.handleClick = this.$lodash.debounce(()=> {
        // code
    }, 300);
},

Data Property 和方法 | Vue3中文文档 - vuejs (vue3js.cn)

你可能感兴趣的:(vue中使用lodash的debounce防抖)