Vue - Select binding
by Ben Clayton
HTML
<div id="app">
<h2>Select ({{choosen}})</h2>
<select v-model="choosen">
<option v-for="opt in options" :value="opt[0]">{{opt[1]}}</option>
</select>
</div>
CSS
body {
background: #20262E;
padding: 20px;
font-family: Helvetica;
}
#app {
background: #fff;
border-radius: 4px;
padding: 20px;
transition: all 0.2s;
}
li {
margin: 8px 0;
}
h2 {
font-weight: bold;
margin-bottom: 15px;
}
del {
color: rgba(0, 0, 0, 0.3);
}
Vue
new Vue({
el: "#app",
data: {
options: [["red","Red"],["green","Green"],["blue","Blue"]],
choosen: ""
},
methods: {
toggle: function(todo){
todo.done = !todo.done
}
}
})