[Vue Select](https://vue-select.org/) is a feature rich select/dropdown/typeahead component. It provides a default template that fits most use cases for a filterable select dropdown. The component is designed to be as lightweight as possible, while maintaining high standards for accessibility, developer experience, and customization, this tag can refer to the Vuetify select component.
Questions tagged [v-select]
173 questions
0
votes
1 answer
dynamic input not hide input at initial load
I m new to vue 2.5 and stuck in problem when user click on v-select
I m able to dynamic input but my problem is that when page load (initially) i want to hide input i.e input should visible only when user click on v-select any option

Rocky
- 319
- 3
- 8
- 23
0
votes
1 answer
Why does V-select value changes on second click instead of first?
I have a V-select like below, and when I load the page it gets filled with data from my Vuex-store. I then have a computed property to get the currently selected company. My problem is that the value from the currently selected company only updates…
user5283666
0
votes
3 answers
How can I add items to an input using the enter key and only submit the form when i click a button?
I'm using v-select and there is a problem with this plugin... When you press enter inside input, it submit to form. How can i add items to input using Enter and only submit the form when i click at Button?
Example Here CODE PEN
HTML
…

Johnson
- 1,396
- 6
- 17
- 36
0
votes
1 answer
V-select bug while selecting elements in Vuejs
I'm building a small application in vuejs 2 where I'm using v-select package for select box, Problem I'm facing is:
I've declared v-select in my component something like this:

Nitish Kumar
- 6,054
- 21
- 82
- 148
0
votes
2 answers
v-select doesn't recognize label prop
I'm working on a VueJs file and try to use so what I'm doing is that :
and my divisions is an array of object conatining id and text but when i'm going on my page I have <%…

Sylvain Attoumani
- 1,213
- 1
- 15
- 34
-1
votes
1 answer
How do I watch for onChange of specific select menu that was dynamically generated?
I have a row of 3 inputs. It lay out like this:
Attribute (select) > Operators (select) > Value (text)
UI look like this:
Code for that:

code-8
- 54,650
- 106
- 352
- 604
-1
votes
1 answer
select multiple cities suggested by google places
i'm using v-select and i'm trying to have a multiple select through which to select one or more cities, suggested by google ... does anyone know if it can be done?
I don't even find examples
https://vue-select.org/

Elena
- 149
- 1
- 2
- 5
-2
votes
1 answer
Map array of objects into new groups
I have an object with two arrays of objects being returned from an API. I need to try to map this into a new array of objects so I can group the data for the Vue v-select component. CodePen Example
fields: {
current: [
{
…
user4649470