I use Vuetify v3 and try to fill a v-select by using items and items-text property but it doesn't work.
The v-select display 2 empty slot.
<v-select ref="structure" :items="structures" item-text="name" item-value="uuid" label="Structure" v-model="listStructure" return-object ></v-select>
The data is correctly filled in with an Get request in the create method of the page.
But the list seems two have two data but empty.
Below the example of one data
{
"name": "strcuture1",
"uuid": "1b0d3f5f-8806-47a5-be63-cef12865c07b"
}
In v.3 you should use
item-title="name"instead ofitem-text="name".They have changed from
item-textin v2.6 toitem-titlein v3.Check the 'v-select/v-combobox/v-autocomplete' section of the Vuetify's Upgrade Guide.
Here is the playground: