[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
2
votes
1 answer
Get rid of empty space in v-select
I use Vuetify and have a question about access to styles of v-select input.
Actual result:
The desired result is to get rid of space between dots and arrow.
I went through the official docs, but it didn't help.

tadvas
- 131
- 1
- 13
2
votes
3 answers
How to reduce size of vuetify inputs(v-select/v-input)
How can I make vuetify input fields(v-select/v-input) smaller? BY smaller I mean reduce inner whitespace/padding?
Here's my markup:

Md Shuvo
- 69
- 1
- 9
2
votes
2 answers
Vuetify v-select not showing options
I have a component that grabs the address from a user, and part of that is the state. I followed the documentation and cannot find anything different about my code compared to documentation. The problem is that when i click the button to show…

BampyRocket
- 96
- 1
- 11
2
votes
1 answer
Vuetify v-select multiple must have at least one item selected
I have the following v-select:

Igal
- 5,833
- 20
- 74
- 132
2
votes
1 answer
removing the extra input inside a v-select in vuetify
My v-select has an extra input inside it which makes the styling very problematic. My custom component doesn't add it. I am pretty sure it's some vuetify stuff. Does anybody know how to get rid of it?

seyet
- 1,080
- 4
- 23
- 42
2
votes
1 answer
Vuetify Component v-select multiple show index/selection order
I'm starting on Vue.js and I'm stuck on something really basic.
I did a multiple v-select (Vuetify component) which allows me to choose one or more items from a list.

MONTES Irvin
- 21
- 1
2
votes
1 answer
Vuetify create variable from selection
I have a dropdown list in vuetify from which I want to save the selected options as variables. The reason why I want to save the options as variables is because later I'll use them to populate a highcharts graph.
So for example, if the first two…

FilipeTeixeira
- 1,100
- 2
- 9
- 29
2
votes
3 answers
Vue Select how to bind 1 property to v-model
I've put v-model in v-select but it returns the whole object
{{selected}}
…
Vue Select - Using v-model

Jiel
- 103
- 1
- 2
- 12
2
votes
2 answers
How can I set option value selected in v-select in vue.js 2?
I am trying to set option selected where option value is 1. But I am getting in trouble when using v-select from vuejs. This is how I am trying to do -

Rashed Hasan
- 3,721
- 11
- 40
- 82
2
votes
2 answers
vuetify v-select with multiple options - getting selected/deselected option
I'm using Vuetify and its v-select component with multiple option enabled to allow selecting multiple options.
These options represent talent(candidate) pools for my CRM software.
What it needs to do is that when some option in v-select is checked,…

kecman
- 813
- 3
- 14
- 34
2
votes
2 answers
how to pass value in v-select in vue
i m new to vue (version 2.5) in my project i had install v-select i go through document and got confuse on few thing
here is my code
…

Rocky
- 319
- 3
- 8
- 23
2
votes
1 answer
How to disable/enable case sensitive for v-select
İs that possible to set some rules for disable or enable case sensitive searchable v-select

radeveloper
- 926
- 2
- 12
- 20
1
vote
1 answer
Fill search value with current selection on focus
I am using v-select https://vue-select.org/ in my project.
I'd like to have my search value filled with current selection on focus.
First step is:
My first selection
After I select the first option, I want to have my search value equal to the one I…

Jedreqq
- 15
- 4
1
vote
1 answer
v-select set number of items shown in dropdown Vuetify
I have the following v-select:
It has 7 items (for each weekday) but I want it to show all 7 when it's opened, not only the first 6 with a scrollbar. I can't seem to find an v-select API option for that.
I searched on the Vuetify page and on…

MySurmise
- 146
- 11