This commit is contained in:
2026-04-02 16:35:12 +08:00
parent af024d28a0
commit 80538ee62c
4 changed files with 199 additions and 79 deletions

View File

@@ -36,10 +36,10 @@
this.focusState = true
},
handleBlur (e) {
this.$emit('input', e.target.value)
// if (e.target.value.length) {
// this.$emit('handleChange', e.target.value)
// }
const newVal = e.target.value
if (newVal !== this.value) {
this.$emit('input', newVal)
}
this.focusState = false
},
toDel () {