Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/manufosela/litelementbundled
- Owner: manufosela
- Created: 2019-04-17T19:31:20.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-04-18T16:03:46.000Z (over 5 years ago)
- Last Synced: 2024-11-10T19:23:47.820Z (2 months ago)
- Language: JavaScript
- Size: 19.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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);
};
```