Revert blur-sm events to blur

This commit is contained in:
mikiher 2025-03-23 09:14:58 +02:00
parent f88e40ea3e
commit 8d0676b780
3 changed files with 3 additions and 3 deletions

View File

@ -32,7 +32,7 @@ export default {
this.$emit('focus') this.$emit('focus')
}, },
blurred() { blurred() {
this.$emit('blur-sm') this.$emit('blur')
}, },
change(e) { change(e) {
this.$emit('change', e.target.value) this.$emit('change', e.target.value)

View File

@ -106,7 +106,7 @@ export default {
this.inputValue = this.inputValue.trim() this.inputValue = this.inputValue.trim()
} }
this.isFocused = false this.isFocused = false
this.$emit('blur-sm') this.$emit('blur')
}, },
change(e) { change(e) {

View File

@ -55,7 +55,7 @@ export default {
} }
}, },
inputBlurred() { inputBlurred() {
this.$emit('blur-sm') this.$emit('blur')
} }
}, },
mounted() {} mounted() {}