Skip to content
On this page

usePrevious

保存上一次状态的 Hook。

基础用法

自定义 shouldUpdate 函数

Result

参数说明类型
previousRef上次 state 的值Readonly<Ref<T>>

Params

参数说明类型默认值
currentRef需要记录变化的值Ref<T> | ComputedRef<T>-
shouldUpdate可选,自定义判断值是否变化(prev: T | undefined, next: T) => boolean(a, b) => a !== b

Source

源码文档示例