0👍
✅
You should be able to set tabindex
directly on the vue-tags-input
component.
In the source code you can see, that $attrs
is bound to the input element, which means, that the tabindex
should get bound to the element you described too.
https://github.com/JohMun/vue-tags-input/blob/master/vue-tags-input/vue-tags-input.vue#L124
<vue-tags-input
v-model="xxx"
tabindex="1"
/>
Source:stackexchange.com