diff --git a/src/components/Select.vue b/src/components/Select.vue index 02bc3b4..4763ca2 100644 --- a/src/components/Select.vue +++ b/src/components/Select.vue @@ -198,6 +198,7 @@ :placeholder="searchPlaceholder" :readonly="!searchable" :style="{ width: isValueEmpty ? '100%' : 'auto' }" + :id="inputId" > @@ -407,6 +408,14 @@ noDrop: { type: Boolean, default: false + }, + + /** + * Sets the id of the input element. + * @type {String} + */ + inputId: { + type: String } },