12 lines
314 B
JavaScript
12 lines
314 B
JavaScript
import { html, WebComponent } from "../../src/index.js";
|
|
|
|
export class Counter extends WebComponent {
|
|
static props = {
|
|
count: 123,
|
|
};
|
|
get template() {
|
|
return html`<button onclick=${() => ++this.props.count} id="btn">${this.props.count}</button>`;
|
|
}
|
|
}
|
|
|
|
customElements.define("my-counter", Counter);
|