We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e8e643 commit efbfd37Copy full SHA for efbfd37
src/mixins/form-text.js
@@ -75,7 +75,7 @@ export default {
75
const { value } = this
76
return {
77
localValue: toString(value),
78
- vModelValue: this.modifyValue(value)
+ vModelValue: value
79
}
80
},
81
computed: {
@@ -111,7 +111,7 @@ export default {
111
this.clearDebounce()
112
// Update the local values
113
this.localValue = stringifyValue
114
- this.vModelValue = this.modifyValue(newValue)
+ this.vModelValue = newValue
115
116
117
@@ -136,6 +136,7 @@ export default {
136
return value
137
138
modifyValue(value) {
139
+ value = toString(value)
140
// Emulate `.trim` modifier behaviour
141
if (this.trim) {
142
value = value.trim()
0 commit comments