Reduce debounce on autocomplete.

Make it feel more smooth !
This commit is contained in:
Thomas Citharel 2019-12-20 11:39:30 +01:00
parent 6b33f6acee
commit 638d9fbdea
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ export default class AddressAutoComplete extends Vue {
// We put this in data because of issues like https://github.com/vuejs/vue-class-component/issues/263
data() {
return {
fetchAsyncData: debounce(this.asyncData, 500),
fetchAsyncData: debounce(this.asyncData, 200),
};
}