Skip to content

Instantly share code, notes, and snippets.

@vsavkin
Created March 13, 2019 14:13
Show Gist options
  • Save vsavkin/10a1e9534aca2caa10391a5da35c7cc6 to your computer and use it in GitHub Desktop.
Save vsavkin/10a1e9534aca2caa10391a5da35c7cc6 to your computer and use it in GitHub Desktop.
export class GreetingElement extends HTMLElement {
public static observedAttributes = ['title'];
attributeChangedCallback() {
this.innerHTML = `<h1>Welcome to ${this.title}!</h1>`;
}
}
customElements.define('happynrwl-greeting', GreetingElement);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment