Skip to content

Instantly share code, notes, and snippets.

@mtvspec
Last active December 4, 2020 18:29
Show Gist options
  • Save mtvspec/2f8e2011a20f23ac907fa453a6fb2fa4 to your computer and use it in GitHub Desktop.
Save mtvspec/2f8e2011a20f23ac907fa453a6fb2fa4 to your computer and use it in GitHub Desktop.
Simple button example
<ns-button label="Button Label"></ns-button>
class NsButton extends HTMLElement {
constructor() {
super()
this.innerHTML = `${this.getAttribute('label')}`
}
}
window.customElements.define('ns-button', NsButton)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment