We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9c676f commit f40baa2Copy full SHA for f40baa2
packages/runtime-dom/src/jsx.ts
@@ -547,7 +547,7 @@ export interface InputHTMLAttributes extends HTMLAttributes {
547
checked?: Booleanish | any[] | Set<any> | undefined // for IDE v-model multi-checkbox support
548
crossorigin?: string | undefined
549
disabled?: Booleanish | undefined
550
- enterKeyHint?:
+ enterkeyhint?:
551
| 'enter'
552
| 'done'
553
| 'go'
@@ -556,6 +556,10 @@ export interface InputHTMLAttributes extends HTMLAttributes {
556
| 'search'
557
| 'send'
558
| undefined
559
+ /**
560
+ * @deprecated Use `enterkeyhint` instead.
561
+ */
562
+ enterKeyHint?: InputHTMLAttributes['enterkeyhint']
563
form?: string | undefined
564
formaction?: string | undefined
565
formenctype?: string | undefined
0 commit comments