[Vuejs]-Vuetify Autocomplete with Axios Query not working โ€“ VueJS

0๐Ÿ‘

I think the problem comes from your item-text and item-value, try it this way:

<v-autocomplete                                                                    
    v-model="selectAcc"
    v-model:search="searchAcc"
    :loading="loadingAcc"
    label="Coordenador do Curso"
    menu-icon=""
    :items="itemsAcc"
    item-value="id"
    item-text="value"
    hide-no-data
    hide-details
    variant="outlined"
    density="compact">
</v-autocomplete>

0๐Ÿ‘

if you are using Vuetify 3 you should use item-title instead of item-text

Leave a comment