Appearance
节流的 watch。
import { throttledWatch } from '@base-web-kits/base-tools-vue'; import { ref } from 'vue'; const count = ref(0); throttledWatch( count, () => { console.log('changed'); }, { throttle: 1000 }, );
VueUse