Skip to content

Instantly share code, notes, and snippets.

@bendc
Created January 5, 2017 13:07
Show Gist options
  • Save bendc/d2b9a5a489ad02d557abab1a2cbe1fc6 to your computer and use it in GitHub Desktop.
Save bendc/d2b9a5a489ad02d557abab1a2cbe1fc6 to your computer and use it in GitHub Desktop.
Web Components: hello-message-slot
customElements.define("hello-message", class extends HTMLElement {
constructor() {
super();
const root = this.attachShadow({mode: "open"});
root.innerHTML = "Hello <slot></slot>";
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment