We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0
1 parent 13ff8b3 commit d026496Copy full SHA for d026496
src/components/MdField/MdField.vue
@@ -70,7 +70,7 @@
70
},
71
computed: {
72
stringValue () {
73
- return this.MdField.value && this.MdField.value.toString()
+ return (this.MdField.value || this.MdField.value === 0) && this.MdField.value.toString()
74
75
hasCounter () {
76
return this.mdCounter && (this.MdField.maxlength || this.MdField.counter)
0 commit comments