mirror of https://github.com/ElemeFE/element
Fixes #7728
parent
762f337b2c
commit
d2908487d7
|
@ -5,6 +5,7 @@
|
||||||
:readonly="!editable || readonly"
|
:readonly="!editable || readonly"
|
||||||
:disabled="disabled"
|
:disabled="disabled"
|
||||||
:size="size"
|
:size="size"
|
||||||
|
:id="id"
|
||||||
v-clickoutside="handleClose"
|
v-clickoutside="handleClose"
|
||||||
:placeholder="placeholder"
|
:placeholder="placeholder"
|
||||||
@focus="handleFocus"
|
@focus="handleFocus"
|
||||||
|
@ -209,6 +210,7 @@ export default {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
default: true
|
default: true
|
||||||
},
|
},
|
||||||
|
id: String,
|
||||||
popperClass: String,
|
popperClass: String,
|
||||||
editable: {
|
editable: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
|
|
|
@ -47,6 +47,7 @@
|
||||||
:placeholder="currentPlaceholder"
|
:placeholder="currentPlaceholder"
|
||||||
:name="name"
|
:name="name"
|
||||||
:size="size"
|
:size="size"
|
||||||
|
:id="id"
|
||||||
:disabled="disabled"
|
:disabled="disabled"
|
||||||
:readonly="!filterable || multiple"
|
:readonly="!filterable || multiple"
|
||||||
:validate-event="false"
|
:validate-event="false"
|
||||||
|
@ -171,6 +172,7 @@
|
||||||
value: {
|
value: {
|
||||||
required: true
|
required: true
|
||||||
},
|
},
|
||||||
|
id: String,
|
||||||
size: String,
|
size: String,
|
||||||
disabled: Boolean,
|
disabled: Boolean,
|
||||||
clearable: Boolean,
|
clearable: Boolean,
|
||||||
|
|
Loading…
Reference in New Issue