We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1a100a commit 861d457Copy full SHA for 861d457
src/components/Select.vue
@@ -198,6 +198,7 @@
198
:placeholder="searchPlaceholder"
199
:readonly="!searchable"
200
:style="{ width: isValueEmpty ? '100%' : 'auto' }"
201
+ :id="inputId"
202
>
203
204
<i v-if="!noDrop" ref="openIndicator" role="presentation" class="open-indicator"></i>
@@ -407,6 +408,14 @@
407
408
noDrop: {
409
type: Boolean,
410
default: false
411
+ },
412
+
413
+ /**
414
+ * Sets the id of the input element.
415
+ * @type {String}
416
+ */
417
+ inputId: {
418
+ type: String
419
}
420
},
421
0 commit comments