We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 516d464 commit 77223dfCopy full SHA for 77223df
packages/runtime-dom/types/jsx.d.ts
@@ -455,7 +455,7 @@ export interface InputHTMLAttributes extends HTMLAttributes {
455
autocomplete?: string
456
autofocus?: Booleanish
457
capture?: boolean | 'user' | 'environment' // https://www.w3.org/tr/html-media-capture/#the-capture-attribute
458
- checked?: Booleanish
+ checked?: Booleanish | any[] // for IDE v-model multi-checkbox support
459
crossorigin?: string
460
disabled?: Booleanish
461
form?: string
@@ -480,7 +480,7 @@ export interface InputHTMLAttributes extends HTMLAttributes {
480
src?: string
481
step?: Numberish
482
type?: string
483
- value?: string | string[] | number
+ value?: any // we support :value to be bound to anything w/ v-model
484
width?: Numberish
485
}
486
0 commit comments