wcb/demo/examples/props-blueprint/index.js
Ayo ce30b114a2 chore: new demo workspace & e2e tests
- this adds a new demo web app with vite HMR for development
- all examples are covered with e2e tests
2026-07-05 15:40:53 +02:00

14 lines
322 B
JavaScript

import { html, WebComponent } from 'web-component-base'
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)