This commit is contained in:
2021-04-29 18:36:31 +00:00
parent fa4349fc02
commit 89fabfe3fd
6 changed files with 46 additions and 8 deletions

View File

@@ -3,7 +3,7 @@
<v-text-field
ref="textField"
:value="currencyValue"
@change="updateValue"
@input="updateValue"
v-currency="{
currency: null,
locale: languageName,
@@ -52,6 +52,9 @@ export default {
currency: null,
locale: this.languageName
});
if (parsedValue == this.value) {
return;
}
this.$emit("input", parsedValue);
}