-
Hi everyone, I'm new to Vue.js and I have been enjoying using Vuetify to build small projects! I was wondering if there a way of using the search prop to only search on keyup.enter, instead of searching on every character typed? Any suggestions would be welcomed! Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Answered by
Ce11an
Feb 3, 2022
Replies: 1 comment 1 reply
-
For now, I have used a watch on the input with a debounce function so that a search only performs after 600ms have passed without any input. Working well so far! |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Ce11an
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For now, I have used a watch on the input with a debounce function so that a search only performs after 600ms have passed without any input. Working well so far!