File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/runtime-dom/types Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -455,7 +455,7 @@ export interface InputHTMLAttributes extends HTMLAttributes {
455
455
autocomplete ?: string
456
456
autofocus ?: Booleanish
457
457
capture ?: boolean | 'user' | 'environment' // https://www.w3.org/tr/html-media-capture/#the-capture-attribute
458
- checked ?: Booleanish
458
+ checked ?: Booleanish | any [ ] // for IDE v-model multi-checkbox support
459
459
crossorigin ?: string
460
460
disabled ?: Booleanish
461
461
form ?: string
@@ -480,7 +480,7 @@ export interface InputHTMLAttributes extends HTMLAttributes {
480
480
src ?: string
481
481
step ?: Numberish
482
482
type ?: string
483
- value ?: string | string [ ] | number
483
+ value ?: any // we support :value to be bound to anything w/ v-model
484
484
width ?: Numberish
485
485
}
486
486
You can’t perform that action at this time.
0 commit comments