This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
<v-text-field
|
||||
ref="textField"
|
||||
:value="currencyValue"
|
||||
@change="updateValue"
|
||||
@input="updateValue"
|
||||
v-currency="{
|
||||
currency: null,
|
||||
locale: languageName,
|
||||
@@ -54,6 +54,15 @@ export default {
|
||||
locale: this.languageName
|
||||
});
|
||||
|
||||
if (parsedValue == this.value) {
|
||||
return;
|
||||
}
|
||||
|
||||
// console.log("PCT CONTROL:", {
|
||||
// parsedValue: parsedValue,
|
||||
// value: this.value
|
||||
// });
|
||||
|
||||
this.$emit("input", parsedValue);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user