Skip to content

Commit e5a9089

Browse files
authored
fix(types): add Set<any> to checkbox binding type for v-model (#5713)
1 parent eef1447 commit e5a9089

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/runtime-dom/types/jsx.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ export interface InputHTMLAttributes extends HTMLAttributes {
457457
autocomplete?: string
458458
autofocus?: Booleanish
459459
capture?: boolean | 'user' | 'environment' // https://www.w3.org/tr/html-media-capture/#the-capture-attribute
460-
checked?: Booleanish | any[] // for IDE v-model multi-checkbox support
460+
checked?: Booleanish | any[] | Set<any> // for IDE v-model multi-checkbox support
461461
crossorigin?: string
462462
disabled?: Booleanish
463463
form?: string

0 commit comments

Comments
 (0)