Skip to content

Commit

Permalink
fix(types): add Set<any> to checkbox binding type for v-model (#5713)
Browse files Browse the repository at this point in the history
  • Loading branch information
spencermcw committed May 13, 2022
1 parent eef1447 commit e5a9089
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/runtime-dom/types/jsx.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ export interface InputHTMLAttributes extends HTMLAttributes {
autocomplete?: string
autofocus?: Booleanish
capture?: boolean | 'user' | 'environment' // https://www.w3.org/tr/html-media-capture/#the-capture-attribute
checked?: Booleanish | any[] // for IDE v-model multi-checkbox support
checked?: Booleanish | any[] | Set<any> // for IDE v-model multi-checkbox support
crossorigin?: string
disabled?: Booleanish
form?: string
Expand Down

0 comments on commit e5a9089

Please sign in to comment.