UNPKG

wc-markdown-loader

Version:

Webpack loader to render Web Components from markdown

17 lines (13 loc) 284 B
import { html, LitElement } from 'lit-element'; class HelloWorld extends LitElement { static get properties() { return { label: String }; } render() { return html` <div>Hello ${this.label}</div>`; } } customElements.define('hello-world', HelloWorld);