Skip to content

Instantly share code, notes, and snippets.

@jesuslerma
Last active July 31, 2017 05:22
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 jesuslerma/de5d3667369db751f1155c383c00052e to your computer and use it in GitHub Desktop.
Save jesuslerma/de5d3667369db751f1155c383c00052e to your computer and use it in GitHub Desktop.
Sample Vue.s
<template id='productsTemplate'>
<ul>
<li v-for="product in products">
{{product.name}} {{product.color}} cuesta ${{product.price}}
</li>
</ul>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment