Debounce not working properly in Vue 3 input field
Debounce not working properly in Vue 3 input field
watch(searchQuery, (newVal) => {
debounceFetch(newVal)
})
function debounceFetch(val) {
setTimeout(() => {
fetchData(val)
}, 500)
}