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
Source:stackexchange.com