Files
polymer/polymer-element.html
2017-02-28 16:26:19 -08:00

18 lines
700 B
HTML

<link rel="import" href="lib/mixins/element-mixin.html">
<script>
/**
* Base class that provides the core API for Polymer's meta-programming
* features including template stamping, data-binding, attribute deserialization,
* and property change observation.
*
* @polymerElement
* @memberof Polymer
* @extends HTMLElement
* @mixes Polymer.ElementMixin
* @summary Custom element base class that provides the core API for Polymer's
* key meta-programming features including template stamping, data-binding,
* attribute deserialization, and property change observation
*/
const Element = Polymer.ElementMixin(HTMLElement);
Polymer.Element = Element;
</script>