0👍
✅
thanks to @RoyJ’s comment:
computed:{
clicked(){
return _.debounce(this.click, this.debouncing)
}
},
methods:{
click(){
this.$emit('click');
},
}
Source:stackexchange.com