<input v-on:input="debounceInput">
methods: {
debounceInput: _.debounce(function (e) {
this.filterKey = e.target.value;
}, 500)
}
-
-
Save FoxMalder/d774b04b19e7061a8bcbc87910123421 to your computer and use it in GitHub Desktop.
Vue.js: lodash debounce
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment