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')
},
blurred() {
this.$emit('blur-sm')
this.$emit('blur')
},
change(e) {
this.$emit('change', e.target.value)

View File

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

View File

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