home ~ projects ~ socials

Basic Light DOM Web Component Example

class ExampleWidget extends HTMLElement {
  constructor() {
    super();
  }

  connectedCallback() {
    const fragment = new DocumentFragment();
    fragment.append("Hello, world");
    this.appendChild(fragment);
  }
}

customElements.define('example-widget', ExampleWidget)
-- end of line --