🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
[TOC] ## useDebounceFn ``` import { useDebounceFn } from '@vueuse/core' const debouncedFn = useDebounceFn(() => { // do something }, 1000) window.addEventListener('resize', debouncedFn) ``` ## useThrottleFn ``` import { useThrottleFn } from '@vueuse/core' const throttledFn = useThrottleFn(() => { // do something, it will be called at most 1 time per second }, 1000) window.addEventListener('resize', throttledFn) ```