<button @click="handleClick">BTN</button>
data() {
return {
handleClick: null,
};
},
created() {
this.handleClick = this.$lodash.debounce(()=> {
// code
}, 300);
},
<button @click="handleClick">BTN</button>
data() {
return {
handleClick: null,
};
},
created() {
this.handleClick = this.$lodash.debounce(()=> {
// code
}, 300);
},