Debounce not working properly in Vue 3 input field
23:20 09 Apr 2026

Debounce not working properly in Vue 3 input field

watch(searchQuery, (newVal) => {
  debounceFetch(newVal)
})

function debounceFetch(val) {
  setTimeout(() => {
    fetchData(val)
  }, 500)
}
vue.js