Skip to content

Instantly share code, notes, and snippets.

@kdes70
Forked from zmts/debounce.md
Created February 19, 2020 04:46
Show Gist options
  • Save kdes70/ca31a854b15395367724785a91e221ab to your computer and use it in GitHub Desktop.
Save kdes70/ca31a854b15395367724785a91e221ab 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