Appearance
带有节流功能的 ref 历史记录。
import { useThrottledRefHistory } from '@base-web-kits/base-tools-vue'; import { ref } from 'vue'; const count = ref(0); const { history, undo, redo } = useThrottledRefHistory(count, { throttle: 1000 });
VueUse