Skip to content

Commit 9ca8759

Browse files
committed
lintエラーを解消
1 parent d2ace11 commit 9ca8759

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

components/VInputField.vue

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -97,14 +97,6 @@ export default Vue.extend({
9797
default: '',
9898
},
9999
},
100-
watch: {
101-
rules() {
102-
this.showError = this.hasErrors
103-
},
104-
value() {
105-
this.$emit('validate', !this.hasErrors)
106-
},
107-
},
108100
data(): {
109101
showError: boolean
110102
fontSizeMap: Map<SizeType, FontSizeType>
@@ -187,6 +179,14 @@ export default Vue.extend({
187179
)
188180
},
189181
},
182+
watch: {
183+
rules() {
184+
this.showError = this.hasErrors
185+
},
186+
value() {
187+
this.$emit('validate', !this.hasErrors)
188+
},
189+
},
190190
})
191191
</script>
192192

0 commit comments

Comments
 (0)