mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(DatePicker): failed to update model value (#10415)
This commit is contained in:
parent
5b72c4005b
commit
a584cc217b
@ -138,7 +138,7 @@ export default defineComponent({
|
||||
watch(
|
||||
() => props.modelValue,
|
||||
(newValues) => {
|
||||
if (isSameValue(newValues, currentValues.value)) {
|
||||
if (!isSameValue(newValues, currentValues.value)) {
|
||||
currentValues.value = newValues;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user