fix(types): add Set<any>
to checkbox binding type for v-model (#5713)
This commit is contained in:
parent
eef14471b2
commit
e5a90893a6
2
packages/runtime-dom/types/jsx.d.ts
vendored
2
packages/runtime-dom/types/jsx.d.ts
vendored
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user