Accessing “this” within debounce only works if you use a standard function, not an arrow function. Eg.
search: _.debounce(function () { this.getData(); }, 500),
Accessing “this” within debounce only works if you use a standard function, not an arrow function. Eg.
search: _.debounce(function () { this.getData(); }, 500),