_lhermann’s avatar_lhermann’s Twitter Archive—№ 445

    1. It's a good idea to debounce user input to avoid firing a request on every keystroke ...
  1. …in reply to @_lhermann
    ... instead, with debouncing there is just one request after the user stopped typing ...
    1. …in reply to @_lhermann
      ... here is code example how to do that easily with @vuejs lukashermann.dev/writing/vue-debounce-input/