mirror of https://github.com/vuejs/core.git
types(jsx): correct the naming of the enterKeyHint property (#14090)
This commit is contained in:
parent
e9c676ff2b
commit
f40baa2d50
|
|
@ -547,7 +547,7 @@ export interface InputHTMLAttributes extends HTMLAttributes {
|
|||
checked?: Booleanish | any[] | Set<any> | undefined // for IDE v-model multi-checkbox support
|
||||
crossorigin?: string | undefined
|
||||
disabled?: Booleanish | undefined
|
||||
enterKeyHint?:
|
||||
enterkeyhint?:
|
||||
| 'enter'
|
||||
| 'done'
|
||||
| 'go'
|
||||
|
|
@ -556,6 +556,10 @@ export interface InputHTMLAttributes extends HTMLAttributes {
|
|||
| 'search'
|
||||
| 'send'
|
||||
| undefined
|
||||
/**
|
||||
* @deprecated Use `enterkeyhint` instead.
|
||||
*/
|
||||
enterKeyHint?: InputHTMLAttributes['enterkeyhint']
|
||||
form?: string | undefined
|
||||
formaction?: string | undefined
|
||||
formenctype?: string | undefined
|
||||
|
|
|
|||
Loading…
Reference in New Issue