lauchpioos/index.ts
2021-11-26 14:36:09 +01:00

17 lines
356 B
TypeScript

class Geometry extends HTMLElement
{
constructor()
{
super();
this.attachShadow({mode: "open"});
console.log("Created Geomtry tag");
const text = document.createElement("p")
text.innerText = "Geometry tag";
this.shadowRoot.append(text);
}
}
customElements.define("custom-geometry", Geometry);