Skip to content

Instantly share code, notes, and snippets.

@gtalarico
Created June 4, 2018 18:34
Show Gist options
  • Save gtalarico/a92121e58daaf1d7643f6e332b0a9958 to your computer and use it in GitHub Desktop.
Save gtalarico/a92121e58daaf1d7643f6e332b0a9958 to your computer and use it in GitHub Desktop.
VueJs _.debounce filtering
<template>
<input class="input is-small" type="text" placeholder="Filter" v-model="query" @keyup='doFilter'>
</template>
<script>
...
data () {
return {
this.debouncedQuery = '',
this.query = ''
, }
}
mounted () {
this.doFilter = _.debounce(() => {
self.debouncedQuery = self.query
}, 300)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment