lauchpioos/index.ts

17 lines
356 B
TypeScript
Raw Normal View History

2021-11-26 13:36:09 +00:00
class Geometry extends HTMLElement
2021-11-25 19:56:15 +00:00
{
2021-11-26 13:36:09 +00:00
constructor()
{
super();
this.attachShadow({mode: "open"});
console.log("Created Geomtry tag");
const text = document.createElement("p")
text.innerText = "Geometry tag";
this.shadowRoot.append(text);
}
2021-11-25 19:56:15 +00:00
}
2021-11-26 13:36:09 +00:00
customElements.define("custom-geometry", Geometry);