20 lines
541 B
JavaScript
20 lines
541 B
JavaScript
// @ts-check
|
|
import { WebComponent, attachEffect } from "../../src/index.js";
|
|
export class Counter extends WebComponent {
|
|
static properties = ["count"];
|
|
onInit() {
|
|
this.props.count = 0;
|
|
this.onclick = () => ++this.props.count;
|
|
attachEffect(this.props.count, (count) => console.log(count));
|
|
}
|
|
|
|
afterViewInit() {
|
|
attachEffect(this.props.count, (count) => console.log(count + 100));
|
|
}
|
|
|
|
get template() {
|
|
return `<button id="btn">${this.props.count}</button>`;
|
|
}
|
|
}
|
|
|
|
customElements.define("my-counter", Counter);
|