This commit is contained in:
icssoa 2023-06-08 17:33:44 +08:00
parent 5a000030c5
commit dc8b9e5f60

View File

@ -524,7 +524,9 @@ function update() {
emit("update:modelValue", getUrls(list.value)); emit("update:modelValue", getUrls(list.value));
nextTick(() => { nextTick(() => {
Form.value?.validateField(props.prop); if (props.prop) {
Form.value?.validateField(props.prop);
}
}); });
} }
} }