Answers for "how to select specific option in vue"

0

how to select specific option in vue

<select>
       <option v-for="(item , index) in categories" v-bind:key="index" :selected= "item.id == 30" >
            {{item.title}}
       </option>
</select>
Posted by: Guest on April-17-2020

Code answers related to "how to select specific option in vue"

Browse Popular Code Answers by Language