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 d2ace11 commit 9ca8759Copy full SHA for 9ca8759
components/VInputField.vue
@@ -97,14 +97,6 @@ export default Vue.extend({
97
default: '',
98
},
99
100
- watch: {
101
- rules() {
102
- this.showError = this.hasErrors
103
- },
104
- value() {
105
- this.$emit('validate', !this.hasErrors)
106
107
108
data(): {
109
showError: boolean
110
fontSizeMap: Map<SizeType, FontSizeType>
@@ -187,6 +179,14 @@ export default Vue.extend({
187
179
)
188
180
189
181
182
+ watch: {
183
+ rules() {
184
+ this.showError = this.hasErrors
185
+ },
186
+ value() {
+ this.$emit('validate', !this.hasErrors)
190
})
191
</script>
192
0 commit comments