1👍
You are using :item-text
, which is the name of the property in Vuetify v2.
In v3, the property was renamed to :item-title
.
Change the name and everything works:
<v-select
item-title="username"
...
></v-select>
Here it is in a playground
Source:stackexchange.com