Skip to content
On this page

useThrottle

处理节流值的 Hook。

代码演示

API

const throttledValue = useThrottle(
  value: any,
  options?: Options
);
const throttledValue = useThrottle(
  value: any,
  options?: Options
);

Params

参数说明类型默认值
value需要节流的值Ref<any>-
options配置节流的行为Options-

Options

参数说明类型默认值
wait等待时间,单位为毫秒number1000
leading是否在延迟开始前调用函数booleantrue
trailing是否在延迟开始后调用函数booleantrue

Source

源码文档示例