<div id="app">
<ul>
<li v-for="item in items">
{{ item }}
</li>
</ul>
</div>
Vue.config.devtools = true;
new Vue({
el: '#app',
data: {
items: [
'thingie',
'another thingie',
'lots of stuff',
'yadda yadda'
]
}
})
View Compiled
This Pen doesn't use any external CSS resources.