Follow Polymer on Google+: plus.google.com/107187849809354688692
---
You received this message because you are subscribed to the Google Groups "Polymer" group.
To unsubscribe from this group and stop receiving emails from it, send an email to polymer-dev...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/polymer-dev/b5f658ee-0f87-4a6d-9b27-cb5891870d1e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
<dom-module id="x-list"> <template> <template is="dom-repeat" items="{{items}}" as="item"> <content></content> </template> </template> <script> HTMLImports.whenReady(function() { Polymer({ is: 'x-list', properties: { items: { value: [1, 2, 3] } } }); }); </script></dom-module><x-list> <div>item <span>[[item]]</span></div></x-list>