I want to display a dropdown select with auto selected value that comes from the api.
Currently my code:
<select
class="form-control"
v-model="tutorial.store"
>
<option
required
:value="store.id"
v-for="store in stores"
:key="store.id"
>{{ store.name }}</option
>
</select>
It doesn't show anything but, the values that comes from api is Store 1
Please help