Appearance
可暂停的 watch。
import { pausableWatch } from '@base-web-kits/base-tools-vue'; import { ref } from 'vue'; const count = ref(0); const { stop, pause, resume } = pausableWatch(count, () => { console.log('changed'); });
VueUse