This commit is contained in:
2022-12-12 09:12:17 +08:00
parent 254ef38f6a
commit 7a6502200c
4 changed files with 4 additions and 4 deletions

View File

@@ -11238,6 +11238,7 @@ const _sfc_main$1v = defineComponent({
if (props.type === "number") {
onNumberBlur(event);
}
currentValue.value = new String(props.modelValue).toLocaleString();
emit("blur", event);
};
const onNumberBlur = (event) => {
@@ -11253,7 +11254,6 @@ const _sfc_main$1v = defineComponent({
if (props.qfw) {
value = value.replace(/,/g, "");
}
currentValue.value = new String(props.modelValue).toLocaleString();
emit("update:modelValue", value);
};
const onCompositionstart = () => {