Skip to content

Instantly share code, notes, and snippets.

@PierBover
Last active November 17, 2018 05:29
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 PierBover/88c5f56c6a5c13d27ed9fc8fa82836cf to your computer and use it in GitHub Desktop.
Save PierBover/88c5f56c6a5c13d27ed9fc8fa82836cf to your computer and use it in GitHub Desktop.
<div id="fruits">
<my-fruit v-for="fruit in fruits" :fruit-name="fruit"></my-fruit>
</div>
<script>
var component = new Vue({
el: '#fruits',
data: {
fruits: ['Apple', 'Banana', 'Mango']
}
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment