diff --git a/src/component.vue b/src/component.vue index a1eea86..e1797e4 100644 --- a/src/component.vue +++ b/src/component.vue @@ -2,7 +2,12 @@ >>>>>> 37 class="v-money" /> @@ -72,6 +77,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) } } }