ThinkChat🤖让你学习和工作更高效,注册即送10W Token,即刻开启你的AI之旅 广告
[TOC] ## watchDebounced ``` <template> <div> <label> <input type="text" v-model="source" /> </label> </div> </template> <script setup> import {watchDebounced} from '@vueuse/core'; import {ref} from 'vue'; const source=ref(0); watchDebounced( source, () => { console.log('changed!') }, { debounce: 500, maxWait: 1000 }, ) </script> ```