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/textarea
pull/12932/head
James Wragg 2018-09-28 10:09:37 +01:00 committed by hetech
parent 6cb92acc34
commit b55ea514e2
1 changed files with 1 additions and 0 deletions

View File

@ -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"