I have a simple input box in a Vue template and I would like to use debounce more or less like this:
Very simple without lodash
handleScroll: function() { if (this.timeout) clearTimeout(this.timeout); this.timeout = setTimeout(() => { // your action }, 200); // delay }