wcb/site/src/components/my-counter.js

10 lines
234 B
JavaScript

class Counter extends WebComponent {
static properties = ["count"];
onInit() {
this.props.count = 0;
this.onclick = () => ++this.props.count;
}
get template() {
return `<button>${this.props.count}</button>`;
}
}