Skip to content

Commit eea8ed0

Browse files
committed
chore: lint
1 parent 46c30a3 commit eea8ed0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,9 +118,9 @@ export default defineComponent({
118118
[boolAttrs[i], v]).filter(([, v]) => v !== undefined)))
119119
})
120120

121-
watch(() => attrs, newAttrs => {
121+
watch(() => attrs, (newAttrs) => {
122122
// Functions need to be merged again
123-
const defaultFunctionAttrs: { onChange?: Function, onChangeMode?: Function } = {}
123+
const defaultFunctionAttrs: { onChange?: Function; onChangeMode?: Function } = {}
124124
if (newAttrs.onChange) {
125125
defaultFunctionAttrs.onChange = onChange
126126
}

0 commit comments

Comments
 (0)