Skip to content

Instantly share code, notes, and snippets.

@JiaLiPassion
Created June 20, 2018 06:25
Show Gist options
  • Save JiaLiPassion/5cbf47b0036984b25d24b3534333b5a8 to your computer and use it in GitHub Desktop.
Save JiaLiPassion/5cbf47b0036984b25d24b3534333b5a8 to your computer and use it in GitHub Desktop.
class HelloComponentClass extends HTMLElement {
  constructor() {
  super();
  }
  static get observedAttributes() {
  }
  connectedCallback() {
  }
  disconnectedCallback() {
  }
  attributeChangedCallback(attrName, oldVal, newVal) {
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment