Root container
Every KVision application must have at least one Root container ( an instance of pl.treksoft.kvision.panel.Root
class). Root container is initialized with an ID attribute of HTML tag, which must be present in the main index.html
file.
App.kt
index.html
The Root container is the root of the components tree, which is inserted into the DOM in the place of the selected HTML element. This tree is managed, rendered and refreshed by the Root container.
It is possible to have more than one Root container in one application. In such case there will be more than one independent components trees.
Last updated