diff --git a/src/component.vue b/src/component.vue index cfb5cbc..6a5b693 100644 --- a/src/component.vue +++ b/src/component.vue @@ -2,6 +2,7 @@ @@ -68,6 +69,9 @@ export default { methods: { change (evt) { this.$emit('input', this.masked ? evt.target.value : unformat(evt.target.value, this.precision)) ++ }, ++ blur (evt) { ++ this.$emit('blur', evt) } } }