主题
useThrottledRefHistory
useRefHistory 的缩写,带节流过滤器。
🌐 Shorthand for useRefHistory with throttled filter.
示例
Count: 0
/Delay (in ms):
History (limited to 10 records for demo)
2026-02-07 22:39:39{ value: 0 }
用法
🌐 Usage
该函数在计数器值更改后立即拍摄第一个快照,并延迟 1000 毫秒拍摄第二个快照。
🌐 This function takes the first snapshot right after the counter's value was changed and the second with a delay of 1000ms.
ts
import { useThrottledRefHistory } from '@vueuse/core'
import { shallowRef } from 'vue'
const counter = shallowRef(0)
const { history, undo, redo } = useThrottledRefHistory(counter, { deep: true, throttle: 1000 })