diff --git a/lib/components/form/Input.mixin.js b/lib/components/form/Input.mixin.js index 69bfaf7..75cd5b0 100644 --- a/lib/components/form/Input.mixin.js +++ b/lib/components/form/Input.mixin.js @@ -36,9 +36,13 @@ export default { }, onFocus () { this.$children[0].localFocused = true + + this.$emit('focus') }, onBlur () { this.$children[0].localFocused = false + + this.$emit('blur') } } }