abstract class Application
Base class for KVision applications.
(js)
<init> |
Base class for KVision applications. Application() |
(js)
dispose |
Ending point for an application. open fun dispose(): Map<String, Any> |
(js)
start |
Starting point for an application. open fun start(): Unit
Starting point for an application with the state managed by Hot Module Replacement (HMR). open fun start(state: Map<String, Any>): Unit |
(js)
root |
Create new Root container based on ID fun Application.root(id: String, fixed: Boolean = false, init: Root.() -> Unit): Root
Create new Root container based on HTML element fun Application.root(element: HTMLElement, fixed: Boolean = false, init: Root.() -> Unit): Root |