I need to display all the version on the select menu, Now I only have 2 select with double labeled
I want 2 separate labels ans each have his selectedVersion in V-model
https://codepen.io/czechsebastian/pen/jOPYmJZ?editors=1011
new Vue({
el: '#app',
vuetify: new Vuetify(),
data (){
return{
selectedVersion: {
car: null,
motorcycle: null
},
version: [
{
"car": [
"1.0",
"1.2",
"1.3",
"1.4",
],
"motorcycle": [
"2.1",
"2.2",
"2.3",
"2.4",
],
}]
}
},
})