import { html, WebComponent } from 'web-component-base' export class Counter extends WebComponent { static props = { count: 123, } get template() { return html` ++this.props.count} id="btn"> ${this.props.count} ` } } customElements.define('my-counter', Counter)