Constructor
new Component()
- Source:
Example
class Counter extends Reactive.Component {
state() {
return { count: 0 };
}
template() {
return html`<button data-on-click="increment">${this.count}</button>`;
}
increment() {
this.count.set(this.count.get() + 1);
}
}