Sha256: a1933ab5180fc22c7f848b965dadb80eaf6e77e09c064409cfb306be985bd7dd
Contents?: true
Size: 311 Bytes
Versions: 16
Compression:
Stored size: 311 Bytes
Contents
class Menubar extends HTMLElement { constructor() { super() const template = this.querySelector("template") const attachedShadowRoot = this.attachShadow({ mode: "open" }) attachedShadowRoot.appendChild(template.content.cloneNode(true)) } } customElements.define("alchemy-menubar", Menubar)
Version data entries
16 entries across 16 versions & 1 rubygems