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 9e340b5 commit 9b8b4dcCopy full SHA for 9b8b4dc
src/components/Select.vue
@@ -310,6 +310,7 @@
310
class="form-control"
311
:disabled="disabled"
312
:placeholder="searchPlaceholder"
313
+ :tabindex="tabindex"
314
:readonly="!searchable"
315
:style="{ width: isValueEmpty ? '100%' : 'auto' }"
316
:id="inputId"
@@ -500,6 +501,15 @@
500
501
default: false
502
},
503
504
+ /**
505
+ * Set the tabindex for the input field.
506
+ * @type {Number}
507
+ */
508
+ tabindex: {
509
+ type: Number,
510
+ default: null
511
+ },
512
+
513
/**
514
* When true, newly created tags will be added to
515
* the options list.
0 commit comments