The parent node for the new child node.
Optional
projectionOptions: ProjectionOptionsOptions to be used to create and update the Projection.
Creates a real DOM tree from vnode
. The Projection object returned will contain the resulting DOM Node in
its domNode property.
This is a low-level method. Users will typically use a Projector instead.
The Projection which also contains the DOM Node that was created.
Optional
projectionOptions: ProjectionOptionsOptions to be used to create and update the projection.
Inserts a new DOM node which is generated from a VNode. This is a low-level method. Users wil typically use a Projector instead.
The Projection that was created.
The node that the DOM Node is inserted before.
Optional
projectionOptions: ProjectionOptionsOptions to be used to create and update the projection, see createProjector.
Merges a new DOM node which is generated from a VNode with an existing DOM Node. This means that the virtual DOM and the real DOM will have one overlapping element. Therefore the selector for the root VNode will be ignored, but its properties and children will be applied to the Element provided. This is a low-level method. Users wil typically use a Projector instead.
The Projection that was created.
The existing element to adopt as the root of the new virtual DOM. Existing attributes and child nodes are preserved.
Optional
projectionOptions: ProjectionOptionsOptions to be used to create and update the projection, see createProjector.
Replaces an existing DOM node with a node generated from a VNode. This is a low-level method. Users will typically use a Projector instead.
The Projection that was created.
The node for the VNode to replace.
Optional
projectionOptions: ProjectionOptionsOptions to be used to create and update the Projection.
Generated using TypeDoc
Appends a new child node to the DOM which is generated from a VNode. This is a low-level method. Users will typically use a Projector instead.
Returns
The Projection that was created.