A native Vue.js component that provides similar functionality to Select2 without the overhead of jQuery. This tag relates to the package at https://www.npmjs.com/package/vue-select and should not be used for general questions about
Questions tagged [vue-select]
125 questions
7
votes
1 answer
Adding images to Vue Select dropdown?
I am using vue-select component as my dropdowns and giving it :options as the data to put in the dropdown. I am using it for a credit card dropdown right now and want to add the card type image in in each dropdown row. Is this possible?

RohimL
- 157
- 1
- 3
- 13
6
votes
1 answer
Triggering vue-select dropdown item selection in a unit test
Problem: can't trigger Vue-Select3 item dropdown selection programmatically in unit-tests.
I have tried with both vue-test-utils and @testing-library/vue as well as triggering a click event programmatically in a browser to force list item selection.…

Thomas Findlay
- 61
- 2
- 4
5
votes
1 answer
Styling selected value in Vue Select
I'm using vue select. In the dropdown, there are the labels (not only text). Is it possible to have also the label for the selected value?
5
votes
2 answers
Can I do a search in multiple fields using vue-select.
It's searching in the "label" field as default. But I want to do search in both of them (value, label). Any advice?
Vue.component('v-select', VueSelect.VueSelect);
new Vue({
el: '#app'
});