just want help am using laravel as backend and vue js. vuetify for the front end.
Basically I want to display a data from my table to my v-select tag in vuetify here is my snippet code so far
locations_table
id name
1 box 1
2 box 2
3 box 3
here is my v-select tag
<v-col cols="12" sm="12" md="6">
<v-select :items="locations" label="Location" v-model="item.location"></v-select>
</v-col>
and here is my code for script tag
locations: [
{ text: 'Name', align: 'start', value: 'name', },
],
hope someone can help
thanks