mirror of https://github.com/ElemeFE/element
Input: s autocomplete on textarea (#12917)
A textarea element can also have an autocomplete attribute. Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/textareapull/12932/head
parent
6cb92acc34
commit
b55ea514e2
|
@ -87,6 +87,7 @@
|
||||||
v-bind="$attrs"
|
v-bind="$attrs"
|
||||||
:disabled="inputDisabled"
|
:disabled="inputDisabled"
|
||||||
:readonly="readonly"
|
:readonly="readonly"
|
||||||
|
:autocomplete="autoComplete || autocomplete"
|
||||||
:style="textareaStyle"
|
:style="textareaStyle"
|
||||||
@focus="handleFocus"
|
@focus="handleFocus"
|
||||||
@blur="handleBlur"
|
@blur="handleBlur"
|
||||||
|
|
Loading…
Reference in New Issue