Appearance
返回一个节流后的值。
import { useThrottle } from '@base-web-kits/base-tools-vue'; import { ref } from 'vue'; const input = ref(''); const throttledInput = useThrottle(input, 1000);
VueUse