Skip to content

Instantly share code, notes, and snippets.

@PierBover
Last active November 11, 2018 22:32
Show Gist options
  • Save PierBover/23b68f935ad8e6225d38f3a9b7df6267 to your computer and use it in GitHub Desktop.
Save PierBover/23b68f935ad8e6225d38f3a9b7df6267 to your computer and use it in GitHub Desktop.
<div id="fruits">
<ul>
<li v-for="fruit in fruits">{{fruit}}</li>
</ul>
</div>
<script>
var component = new Vue({
el: '#fruits',
data: {
fruits: ['Apple', 'Mango', 'Banana']
}
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment