How to have multiple select boxes in Vue
Imagine you had a v-for loop with a list of data that have an identical select box for each. How can these two select boxes share v-model to get their values without affecting each other, so they are separate?
new Vue({
el: '...',
data: {
selected: ''
}
})
