Vue
by the94air
HTML
<div id="app">
<input
ref="input"
class="w-full"
type="range"
:value="value"
@input="onInput($event)"
@change="$emit('change', $event.target.value)"
/>
</div>
CSS
input {
width:ful
}
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
}
}
})