Skip to content

Instantly share code, notes, and snippets.

@BrunoAlencar
Created December 6, 2019 17:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BrunoAlencar/d5738eda50e3582a5454c129a94bb0f2 to your computer and use it in GitHub Desktop.
Save BrunoAlencar/d5738eda50e3582a5454c129a94bb0f2 to your computer and use it in GitHub Desktop.
Vue 2
<div id="app">
<ul>
<li v-for="fruit in fruits"> {{ fruit.name }} </li>
</ul>
</div>
new Vue({
el: '#app',
data: {
fruits: [
{ name: 'banana' },
{ name: 'apple' },
{ name: 'orange' }
]
}})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment