This commit is contained in:
Chris Anderson 2017-10-25 16:15:39 -05:00 committed by 杨奕
parent 762f337b2c
commit d2908487d7
2 changed files with 4 additions and 0 deletions

View File

@ -5,6 +5,7 @@
:readonly="!editable || readonly"
:disabled="disabled"
:size="size"
:id="id"
v-clickoutside="handleClose"
:placeholder="placeholder"
@focus="handleFocus"
@ -209,6 +210,7 @@ export default {
type: Boolean,
default: true
},
id: String,
popperClass: String,
editable: {
type: Boolean,

View File

@ -47,6 +47,7 @@
:placeholder="currentPlaceholder"
:name="name"
:size="size"
:id="id"
:disabled="disabled"
:readonly="!filterable || multiple"
:validate-event="false"
@ -171,6 +172,7 @@
value: {
required: true
},
id: String,
size: String,
disabled: Boolean,
clearable: Boolean,