Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/manufosela/litelementbundled

Bundled Lit-Element and Lit-Html Library 2.1.0
https://github.com/manufosela/litelementbundled

Last synced: 3 days ago
JSON representation

Bundled Lit-Element and Lit-Html Library 2.1.0

Awesome Lists containing this project

README

        

# Lit-Element and Lit-Html librarys bundled

If you need to use your lit-elements webcomponents without the magic of the polymer-cli you can use this file.
The minimized version has only 27Kb and the no-minimized version 55Kb.

#EXAMPLE

```html


circle-picture demo




window.onload = function(){
var tag = document.createElement("script");
tag.type = "module";
tag.src = "../my-element.js";
document.getElementsByTagName("head")[0].appendChild(tag);
};



```