InputHTMLAttributes Type — vue Architecture
Architecture documentation for the InputHTMLAttributes type/interface in jsx.d.ts from the vue codebase.
Entity Profile
Source Code
types/jsx.d.ts lines 451–485
export interface InputHTMLAttributes extends HTMLAttributes {
accept?: string
alt?: string
autocomplete?: string
autofocus?: Booleanish
capture?: boolean | 'user' | 'environment' // https://www.w3.org/tr/html-media-capture/#the-capture-attribute
checked?: Booleanish | any[] | Set<any> // for IDE v-model multi-checkbox support
crossorigin?: string
disabled?: Booleanish
form?: string
formaction?: string
formenctype?: string
formmethod?: string
formnovalidate?: Booleanish
formtarget?: string
height?: Numberish
indeterminate?: boolean
list?: string
max?: Numberish
maxlength?: Numberish
min?: Numberish
minlength?: Numberish
multiple?: Booleanish
name?: string
pattern?: string
placeholder?: string
readonly?: Booleanish
required?: Booleanish
size?: Numberish
src?: string
step?: Numberish
type?: string
value?: any // we support :value to be bound to anything w/ v-model
width?: Numberish
}
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free