| 12345678910111213141516171819202122 |
- import { init, attributesModule, h } from "../../build/index.js";
- const patch = init([attributesModule]);
- window.addEventListener("DOMContentLoaded", () => {
- const container = document.getElementById("container");
- const vnode = h("div", [
- h("svg", { attrs: { width: 100, height: 100 } }, [
- h("circle", {
- attrs: {
- cx: 50,
- cy: 50,
- r: 40,
- stroke: "green",
- "stroke-width": 4,
- fill: "yellow",
- },
- }),
- ]),
- ]);
- patch(container, vnode);
- });
|