Interface RendererOptions<HostNode, HostElement>
interface RendererOptions<HostNode, HostElement> { cloneNode?(node: HostNode): HostNode; createComment(text: string): HostNode; createElement(type: string,
namespace?: ElementNamespace,
isCustomizedBuiltIn?: string,
vnodeProps?: null | VNodeProps & { [
key:
string]
: any; }): HostElement; createText(text: string): HostNode; insert(el: HostNode,
parent: HostElement,
anchor?: null | HostNode): void; insertStaticContent?(content: string,
parent: HostElement,
anchor: null | HostNode,
namespace: ElementNamespace,
start?: null | HostNode,
end?: null | HostNode): [HostNode, HostNode]; nextSibling(node: HostNode): null | HostNode; parentNode(node: HostNode): null | HostElement; patchProp(el: HostElement,
key: string,
prevValue: any,
nextValue: any,
namespace?: ElementNamespace,
prevChildren?: VNode<HostNode, HostElement, { [
key:
string]
: any; }>[],
parentComponent?: null | ComponentInternalInstance,
parentSuspense?: null | SuspenseBoundary,
unmountChildren?: UnmountChildrenFn): void; querySelector?(selector: string): null | HostElement; remove(el: HostNode): void; setElementText(node: HostElement,
text: string): void; setScopeId?(el: HostElement,
id: string): void; setText(node: HostNode,
text: string): void; } Methods
Optional
cloneNode
- cloneNode(node: HostNode): HostNode
createComment
- createComment(text: string): HostNode
createElement
- createElement(type: string, namespace?: ElementNamespace, isCustomizedBuiltIn?: string, vnodeProps?: null | VNodeProps & {
[key: string]: any;
}): HostElement Parameters
- type: string
Optional
namespace: ElementNamespaceOptional
isCustomizedBuiltIn: stringOptional
vnodeProps: null | VNodeProps & {
[key: string]: any;
}
createText
- createText(text: string): HostNode
insert
- insert(el: HostNode, parent: HostElement, anchor?: null | HostNode): void
Returns void
Optional
insertStaticContent
nextSibling
- nextSibling(node: HostNode): null | HostNode
parentNode
- parentNode(node: HostNode): null | HostElement
patchProp
- patchProp(el: HostElement, key: string, prevValue: any, nextValue: any, namespace?: ElementNamespace, prevChildren?: VNode<HostNode, HostElement, {
[key: string]: any;
}>[], parentComponent?: null | ComponentInternalInstance, parentSuspense?: null | SuspenseBoundary, unmountChildren?: UnmountChildrenFn): void Returns void
Optional
querySelector
- querySelector(selector: string): null | HostElement
remove
- remove(el: HostNode): void
Returns void
setElementText
- setElementText(node: HostElement, text: string): void
Returns void
Optional
setScopeId
- setScopeId(el: HostElement, id: string): void
Returns void
setText
- setText(node: HostNode, text: string): void
Returns void