Skip to content

Instantly share code, notes, and snippets.

@gvidon
Last active August 29, 2015 14:05
Show Gist options
  • Save gvidon/5cbdfa92a6a72da76489 to your computer and use it in GitHub Desktop.
Save gvidon/5cbdfa92a6a72da76489 to your computer and use it in GitHub Desktop.
Component itself
<polymer-element name="tasks-list">
<template>
<link rel="stylesheet" href="style.css">
<template repeat="{{ tasks }}"><div>{{ title }}</div></template>
</template>
<script>Polymer({reset: function(collection){ this.tasks = collection.toJSON() }})</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment