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 .