Answers for "vue select first option default"

1

how get first option in select in vue js

this.selectValueData = this.optionItem[0].id
Posted by: Guest on June-02-2021
1

vue select first option default

<option v-for="(location, index) in locations" v-bind:value="location.id" v-bind:selected="index === 0">
  {{ location.from }} - {{ location.to }}
</option>
Posted by: Guest on June-18-2020

Code answers related to "vue select first option default"

Code answers related to "Javascript"

Browse Popular Code Answers by Language