gpt4 book ai didi

date - 使用 Prop Vue3 观看

转载 作者:行者123 更新时间:2023-12-05 03:36:10 29 4
gpt4 key购买 nike

我想尝试更新 modelValue 并更改日期选择器中的值

watch(range, (range) => {
emit("update:modelValue", range);
console.log("update:modelValue", range)

});
watch(() => props.modelValue,
(modelValue) => {
range.value = {
start: modelValue.start,
end: modelValue.end,
};
}
);

正在工作,但延迟并显示错误 [Vue warn]: Maximum recursive updates exceeded in component.

最佳答案

为什么需要第一 block watch ?

watch(() => props.modelValue,
(modelValue) => {
// Maybe some if condition check to avoid unnecessary calls
range.value = {
start: modelValue.start,
end: modelValue.end,
};
emit("update:modelValue", range);
}
);

关于date - 使用 Prop Vue3 观看,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69699389/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com