mirror of https://github.com/ElemeFE/element
add autocomplete size (#600)
parent
112eb485a0
commit
84adcace51
|
@ -4,7 +4,8 @@
|
||||||
:value="value"
|
:value="value"
|
||||||
:disabled="disabled"
|
:disabled="disabled"
|
||||||
:placeholder="placeholder"
|
:placeholder="placeholder"
|
||||||
:name='name'
|
:name="name"
|
||||||
|
:size="size"
|
||||||
@change="handleChange"
|
@change="handleChange"
|
||||||
@focus="handleFocus"
|
@focus="handleFocus"
|
||||||
@keydown.up.native="highlight(highlightedIndex - 1)"
|
@keydown.up.native="highlight(highlightedIndex - 1)"
|
||||||
|
@ -55,6 +56,7 @@
|
||||||
placeholder: String,
|
placeholder: String,
|
||||||
disabled: Boolean,
|
disabled: Boolean,
|
||||||
name: String,
|
name: String,
|
||||||
|
size: String,
|
||||||
value: String,
|
value: String,
|
||||||
fetchSuggestions: Function,
|
fetchSuggestions: Function,
|
||||||
triggerOnFocus: {
|
triggerOnFocus: {
|
||||||
|
|
Loading…
Reference in New Issue