Using Just Some Parts
You don’t have to extend the whole base class to use some features. All internals are exposed and usable separately so you can practically build the behavior on your own classes.
Here’s an example of using the html
tag template on a class that extends from vanilla HTMLElement
… also View on CodePen ↗.
import { html } from 'https://unpkg.com/web-component-base/html'import { createElement } from 'https://unpkg.com/web-component-base/utils'
class MyQuote extends HTMLElement { connectedCallback() { const el = createElement( html` <button onClick=${() => alert('hey')}>hey</button>` ) this.appendChild(el) }}
customElements.define('my-quote', MyQuote)