1
Good afternoon, everybody, how are you? Next, I’m listing some courses with v-for and it goes well, however, option needs to be selected and I would like the first item of select to already appear selected, to indicate to the client better...it works, but it’s all blank...it’s not wrong, How do I make the option appear first? Thank you all!! Horatio
<select v-model="cursos" id="cursos" class="form-control" name="cursos">
<option v-for="item in ListaDeCursos" :value="item.from">
{{item.from}}
</option>
</select>