Vue
by teewelk
HTML
<div id="app">
<h2>Todos:</h2>
<div id="TA_cdswritereviewlg301" class="TA_cdswritereviewlg"><ul id="62pbzvhTFKCW" class="TA_links zpkceJp04"><li id="iyCR8zADRdZA" class="1kD9Y1hh"><a target="_blank" href="https://www.tripadvisor.com/Hotel_Review-g31310-d223273-Reviews-Best_Western_Downtown_Phoenix-Phoenix_Arizona.html"><img src="https://static.tacdn.com/img2/brand_refresh/Tripadvisor_lockup_horizontal_secondary_registered.svg" alt="TripAdvisor"/></a></li></ul></div><script async src="https://www.jscache.com/wejs?wtype=cdswritereviewlg&uniq=301&locationId=223273&lang=en_US&lang=en_US&display_version=2" data-loadtrk onload="this.loadtrk=true"></script>
</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: {
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
}
}
})