Skip to content

Instantly share code, notes, and snippets.

@PierBover
Last active November 15, 2018 04: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 PierBover/07126a1ad8dc4defefe138c88e6d0b5f to your computer and use it in GitHub Desktop.
Save PierBover/07126a1ad8dc4defefe138c88e6d0b5f to your computer and use it in GitHub Desktop.
<div id="fruit-template" class="vue-template">
<div class="fruit">
<h3>{{fruitName}}</h3>
</div>
</div>
<script>
Vue.component('my-fruit', {
template: '#fruit-template',
props: ['fruit-name']
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment