Slide 35
Slide 35 text
class SampleButton extends Polymer.Element {
static get is() { return 'sample-button'; }
static get properties() {
return {
num: {
type: Number,
notify: true,
reflectToAttribute: true,
value: 1
},
}
}
count() {
this.num++;
}
}
window.customElements.define(SampleButton.is, SampleButton);