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
0
votes
1 answer
Convert select to vue-select with dynamic data
(Laravel)I have:
import vSelect from 'vue-select'
Vue.component('v-select', vSelect);

Hans_Cusco
- 165
- 1
- 7
0
votes
1 answer
convert select to vue-select with dynamic data (Laravel & Vuejs)
I have dynamic products list to create an invoice. Now I want to search the product from select->option list. I found a possible solution like Vue-select in vuejs but I could not understand how to convert my existing code to get benefit from…

Rashed Hasan
- 3,721
- 11
- 40
- 82
0
votes
1 answer
Vue strap get value from select
I have problem. Can't get value from select using vue strap select.
My html code:

Ilia Levikov
- 166
- 1
- 4
- 13
0
votes
3 answers
How to deny "not selected" option in Vue Select?
I have created select box like this:
JS:
Vue.component("v-select", VueSelect.VueSelect);
new Vue({
el: "#app",
data: {
options: [
{ countryCode: "AU", countryName: "Australia" },
{ countryCode: "CA", countryName: "Canada" },
…

Aligator
- 737
- 2
- 10
- 23
-3
votes
2 answers
Get value from v-select
I have a dropdown component that utilized vue-select that's populating states as a dropdown. When I choose an option from the dropdown the data is not getting grabbed. Here's my dropdown component.
…

Eric Evans
- 640
- 2
- 13
- 31