This commit is contained in:
2022-12-12 10:21:12 +08:00
parent 077ae6f534
commit 45a0415848
4 changed files with 7 additions and 4 deletions

View File

@@ -100,7 +100,8 @@ const input:any = ref<Element>()
watch(
() => props.modelValue,
() => {
if(!input.value.hasFocus() && props.qfw){
console.log(input)
if(!input.hasFocus() && props.qfw){
currentValue.value = formatMoney(props.modelValue.toString());
return
}