diff --git a/CONFIG.md b/CONFIG.md index 79065a9..c33d4b1 100755 --- a/CONFIG.md +++ b/CONFIG.md @@ -296,9 +296,10 @@ Form item value change event // Demo code: -onChange({paths, itemValue, formValue}) { +onChange({paths, itemValue, formValue, oldItemValue}) { // paths: the path of the item whose value changes   // itemValue: the latest value of the item whose value has changed -  // formVallue: the latest value of the form +  // formValue: the latest value of the form + // oldItemValue: ths old value of the item before value changed } ```