I know that Vue.js has built-in functions for debugging in the input field. I created a slider that runs a method that does not use an input field, although I was wondering if I could use the debounce functionality inside the method.
Is it possible to use this function beyond just adding debugging to the input? Or do I need to write my own functions for this?
I just tried to do something like this, but it does not work:
this.$options.filters.debounce(this.search(), 2000);
source share