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