Files
polymer-array-bubble-up-exa…/app/components/another-component/another-component.html
Julien Lengrand-Lambert 641312b4c0 Initiates repo
2017-08-16 16:28:41 +02:00

28 lines
608 B
HTML

<link rel="import" href="/polymer/polymer.html">
<dom-module id="another-component">
<template>
<style>
:host {
display: block;
}
</style>
<h3>{{element.name}}</h3>
<h4>{{element.person.name}}</h4>
</template>
<script>
Polymer({
is: 'another-component',
properties: {
element: {
type: Object,
reflectToAttribute: true,
notify: true
}
},
});
</script>
</dom-module>