// create vdom tree
v1 := VElem("h1") {
it->style = "color: blue"
it.text = "Hello, World"
}
// initial render to DOM node
elem := VDom.render(v1)
// generate a new vdom tree
v2 := VElem("h1") {
it->style = "color: red"
it.text = "Hello, World"
}
// patch existing DOM with changes
VDom.patch(elem, v2)
-
Notifications
You must be signed in to change notification settings - Fork 0
Virtual DOM API for Fantom
License
afrankvt/vdom
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
Virtual DOM API for Fantom
Topics
Resources
License
Stars
Watchers
Forks
Packages 0
No packages published