Questions tagged [v-autocomplete]
55 questions
0
votes
1 answer
Looking for a way to link two v-autocomplete boxes in Vuetify
In the above picture I have two v-autocomplete boxes one for name and the other for email.
Is there a way to connect the two v-autocomplete boxes where when the user enters info for name or email it will also show the options for the other box.
In…

Aaron
- 4,380
- 19
- 85
- 141
0
votes
0 answers
Is there a way in Vuetify to pass a callback function to a v-autocomplete component that is called when the associated v-menu changes visibility?
I am trying to bind some data property (isMenuActive) in the outer scope of a v-autocomplete component to the visibility state of its implicitly created v-menu, independently of what triggers de opening or closing of this menu. So there is no need…

Jerry
- 23
- 5
0
votes
2 answers
Are there any possible ways to search multiple attribute in v-autocomplete in Vuetify?
I have an array of objects bind to item prop of v-autocomplete.
this is my data:
products: [
{
text: "Apple",
value: 209
},
{
text: "Banana",
value: 229
}
]
...
:item="products"
…

Chetha
- 99
- 1
- 2
0
votes
0 answers
updating v-autocomplete dynamically from parent component
Im trying to update the v-autocomplete value set in custom component via the v-model directive , but that is not working as expected , unless there is some user interaction .

Ahmed Rafie
- 67
- 2
- 9
0
votes
1 answer
Nuxt/Vuetify v-autocomplete menu not showing when user type input by auto focus
i am using v-autocomplete with autofocus.

Ali Mirmohamadi
- 1
- 4
0
votes
1 answer
First character not typed when item text selected with cursor in v-autocomplete
With v-autocomplete 1.8.2, clicking input field then selecting an item and then selecting with cursor the selected item in input field . Finally if i type, first character not written on the input field, but second third etc. characters are…

ihsan kocak
- 1,541
- 1
- 17
- 26
0
votes
4 answers
Limit user selection on Vuetify v-autocomplete
I'm struggling and googling on how to control the v-autocomplete for a while, but still didn't find a good answer. I'm trying to use v-autocomplete for multiple city selection and attempting to limit a user to select at maximum of 5. I would expect…

OpStack
- 21
- 1
- 2
0
votes
1 answer
How to save item-value in v-automplete in other variable? [Vue.js + Vuetify]
I don't know how to save the item-value in a variable in the component of Vue.js. I want to save it in idLibro.

calvin11
- 187
- 1
- 17
0
votes
1 answer
Vue v-autocomplete not removing user typed text when selecting drop down item
I have this vue v-autocomplete below.
Trying to determine if this is the expected behavior? Can't find any other examples of this working.
When the user starts to enter in text the autocomplete drops down showing all the drop down items, the user…

chuckd
- 13,460
- 29
- 152
- 331