Vue
by khamer
HTML
<div id="app">
<div class="box"></div>
<div class="controls">
</div>
</div>
CSS
.box {
border: 1em solid;
width: 50vmin;
height: 30.9vmin;
margin: 5vmin auto;
}
Vue
new Vue({
el: "#app",
data: {
todos: [
{ text: "Learn JavaScript", done: false },
{ text: "Learn Vue", done: false },
{ text: "Play around in JSFiddle", done: true },
{ text: "Build something awesome", done: true }
]
},
methods: {
toggle: function(todo){
todo.done = !todo.done
}
}
})