Vue
by RomainMazB
HTML
<div id="app">
<ol>
<li v-for="item in items">
<span v-for="(value, name) in item"> {{ name }}: {{ value }}</span>
</li>
</ol>
</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;
}
Vue
new Vue({
el: "#app",
data: {
items: [
{ "First": "Learn JavaScript" },
{ "Second": "Learn Vue" },
{ "Third": "Play around in JSFiddle" },
{ "Fourth": "Build something awesome" }
]
}
})