Appearance
节流的 ref。
import { throttledRef } from '@base-web-kits/base-tools-vue'; import { ref } from 'vue'; const source = ref(0); const throttled = throttledRef(source, 1000);
VueUse