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