I am using Vuetify for my project.
<v-col cols="12" md="8">
<v-select :items="driverName" v-bind:id="editedItem.driverId" v-model="editedItem.score" label="score"></v-select>
</v-col>
Currently, I need to capture the result ID v-bind:id="editedItem.driverId"
in the :items
.
<v-data-table
:headers="headers"
:items="desserts"
sort-by="calories"
class="elevation-1"
>
I fetch data using an API with Axios. You can find the code here.