Questions tagged [v-autocomplete]
55 questions
1
vote
2 answers
How to dynamically format date on item-text inside v-autocomplete (Vuetify)
I have this v-autocomplete which receives an array of items to display from GrowthTasks.edges

Simao
- 371
- 2
- 13
1
vote
2 answers
Add custom data attribute to Vuetify v-select options
I am using a v-autocomplete component to list items in a selector. Since v-autocomplete is just an advanced v-select, I think an answer for v-select would work for v-autocomplete too.
In my list I have items with different statuses which should be…

Annity
- 96
- 1
- 10
1
vote
2 answers
Nuxt/Vuetify - v-autocomplete not displaying the v-menu
Edit2: I found out the answer to this, you might also miss this one out if you're just starting on vuetify, or that you just directly dive into it and integrate it into an existing project without reading its documentation like me . Vuetify won't…

Yong
- 1,622
- 1
- 4
- 29
1
vote
1 answer
How to limit the number of dropdown results in v-autocomplete?
Image Link I receive 100-200 results from the axios api. I want to show only first 10 from it. Is there any way I can do that. I cannot do that from api since I also want to show the count of total items returning from axios.
Edit: I have a show all…

abhinav
- 11
- 5
1
vote
1 answer
vue.js - Test watchers of v-autocomplete
I have a vue.js SearchTest component with a v-autocomplete. It has watchers for select and search:
// SearchTest.vue

Yang
- 7,712
- 9
- 48
- 65
1
vote
2 answers
Wants to highlight only chars the user types in the input v-autocomplete
I have made a v-autocomplete but it highlights words/chars in the list that the user haven't typed.
the v-autocomplete code:

Maiken Madsen
- 611
- 1
- 15
- 29
0
votes
1 answer
Why isn't a default value being set on my v-autocomplete component?
I'm trying to set the default value of a v-autocomplete component by adding values to the associated v-model. The value is not being set.
I have an array of dates for a week. A v-autocomplete component gets rendered for each day of the week with the…

Kevin
- 60
- 8
0
votes
1 answer
Even if v-autocomplete loses focus I don't want the text to be deleted
Even if v-autocomplete loses focus I don't want the text to be deleted
If you enter text that is not included in the item and lose focus, it will be deleted.
Is there any way to not delete it?
…

baceeeee
- 27
- 4
0
votes
1 answer
v-autocomplete: not displaying text &only using one letter as search-input
My problem is in a Vue 2 application (migration to Vue 3 is pending, need Vue 2 at this time), that is built with Vuetify components.
Versions:
"vue": "^2.6.11",
"vuetify": "^2.6.0"
What I want to do:
I need to fetch addresses from an api in a…

rheaGawrbot
- 11
- 4
0
votes
1 answer
How to get the item-value attribute value from Vuetify VAutocomplete? VueJS
I want to get the selected value from Vuetify's VAutocomplete to use in a function. How can I get this attribute?
I have in my application a V-AutoComplete from Vuetify. It's all working. What I want is that when I select the option in the…
0
votes
1 answer
How to colorize one chip in v-autocomplete (Vuetify)
I would like a selected chip that meets certain criteria to have a different color than all others. How can i do that in Vuetify? Mayby something else than v-autocomplete would be better? I am using Vuetify 2.0

Robert Juszczyński
- 27
- 5
0
votes
1 answer
Vuetify Autocomplete with Axios Query not working - VueJS
Vuetify Autocomplete with Axios Query not working - VueJS
I'm using V-Autocomplete from Vuetify 3 to show a list of people's names.
My files are like this:
My app.js
import './bootstrap';
import { createApp, h } from 'vue'
import { createInertiaApp…
0
votes
1 answer
v-autocomplete reverse order of the filtered results
I am looking to have a dropdown v-autocomplete to return the filtered results in reverse. For example the items in the dropdown would be [2.10, 2.9, 1.11, 1.10, 1.9, 1.6, 1.1]. When a user types 1.1 for example I would need the results to return in…

JC Lopez
- 243
- 1
- 2
- 12
0
votes
1 answer
Style v-autocomplete in vuetify
I have a search bar and an autocomplete component. What I'd like is to be able to style the way the autocomplete renders. At the moment, when I type letters, it displays every word that contains those letters and what I'd like is for it to only show…

Quentin
- 65
- 9
0
votes
0 answers
vuetify v-autocomplete table dropdown
Trying to create a v-autocomplete dropdown with a table format. For example I have a select with a list of products each one with product name, keywords, prefix etc... want to be able to display this info as table on a dropdown.
I was able to get…

JC Lopez
- 243
- 1
- 2
- 12