1.0.6 • Published 6 years ago

@rhi-ui/html v1.0.6

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
6 years ago

HTML Tagged Template

Basic Tagged template which will allow us to get code highlights, on VSCode, for our vanilla custom element templates.

Use

When writting vanilla custom elements, write your template in the following fashion to get html code highlights:

public static getTemplate(): string {
    return html`
    <div>My HTML template code goes here</div>
    `;
}