fix(DatePicker): failed to update model value (#10415)

This commit is contained in:
neverland 2022-03-19 19:48:28 +08:00 committed by GitHub
parent 5b72c4005b
commit a584cc217b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -138,7 +138,7 @@ export default defineComponent({
watch(
() => props.modelValue,
(newValues) => {
if (isSameValue(newValues, currentValues.value)) {
if (!isSameValue(newValues, currentValues.value)) {
currentValues.value = newValues;
}
}