vue dropdown v-fpr item code example
Example: drop down v-for vuehs
<select v-model="testVal">
<option v-for="item in test" :value="item">{{item}}</option>
</select>
and in data
data() {
return{
test: ['one', 'two', 'three'],
testVal: null
}
}