wcb/examples/props-blueprint/hello-world.js
2024-12-19 22:43:12 +01:00

12 lines
274 B
JavaScript

import { html, WebComponent } from '../../src/index.js'
export class HelloWorld extends WebComponent {
static props = {
myName: 'World',
}
get template() {
return html`<p>Hello ${this.props.myName}</p>`
}
}
customElements.define('hello-world', HelloWorld)