Skip to content

Instantly share code, notes, and snippets.

@FoxMalder
Forked from zmts/debounce.md
Created January 10, 2021 19:29
Show Gist options
  • Select an option

  • Save FoxMalder/d774b04b19e7061a8bcbc87910123421 to your computer and use it in GitHub Desktop.

Select an option

Save FoxMalder/d774b04b19e7061a8bcbc87910123421 to your computer and use it in GitHub Desktop.
Vue.js: lodash debounce

Vue.js: Lodash debounce

<input v-on:input="debounceInput">

methods: {
  debounceInput: _.debounce(function (e) {
    this.filterKey = e.target.value;
  }, 500)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment