Skip to content

Commit f13b7b9

Browse files
committed
2 parents a205557 + 124be5d commit f13b7b9

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

src/component.vue

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,12 @@
22
<input type="tel"
33
:value="formattedValue"
44
@change="change"
5+
<<<<<<< HEAD
56
v-money="{precision, decimal, thousands, prefix, suffix, allowBlank}"
7+
=======
8+
@blur="blur"
9+
v-money="{precision, decimal, thousands, prefix, suffix}"
10+
>>>>>>> 37
611
class="v-money" />
712
</template>
813

@@ -72,6 +77,9 @@ export default {
7277
methods: {
7378
change (evt) {
7479
this.$emit('input', this.masked ? evt.target.value : unformat(evt.target.value, this.precision))
80+
+ },
81+
+ blur (evt) {
82+
+ this.$emit('blur', evt)
7583
}
7684
}
7785
}

0 commit comments

Comments
 (0)