mirror of https://github.com/vuejs/core.git
fix(types): support contenteditable="plaintext-only" (#8796)
This commit is contained in:
parent
21a89af9e6
commit
26ca89e5cf
|
@ -244,7 +244,7 @@ export interface HTMLAttributes extends AriaAttributes, EventHandlers<Events> {
|
||||||
|
|
||||||
// Standard HTML Attributes
|
// Standard HTML Attributes
|
||||||
accesskey?: string
|
accesskey?: string
|
||||||
contenteditable?: Booleanish | 'inherit'
|
contenteditable?: Booleanish | 'inherit' | 'plaintext-only'
|
||||||
contextmenu?: string
|
contextmenu?: string
|
||||||
dir?: string
|
dir?: string
|
||||||
draggable?: Booleanish
|
draggable?: Booleanish
|
||||||
|
|
Loading…
Reference in New Issue