Here's a strawman: ``` Polymer({ is: 'x-base' }); Polymer({ is: 'x-foo', extends: 'x-base' }); ``` Issues: - this will need to be integrated with Polymer's behavior system. - we'll want to expose a way to modify/merge super/subclass templates.
Here's a strawman:
Issues: