18 lines
552 B
TypeScript
18 lines
552 B
TypeScript
import { Component, ComponentInternalInstance, createVNode, Slots } from 'vue'
|
|
import { Props, renderComponentVNode, SSRBuffer } from '../render'
|
|
import { SSRSlots } from './ssrRenderSlot'
|
|
|
|
export function ssrRenderComponent(
|
|
comp: Component,
|
|
props: Props | null = null,
|
|
children: Slots | SSRSlots | null = null,
|
|
parentComponent: ComponentInternalInstance | null = null,
|
|
slotScopeId?: string
|
|
): SSRBuffer | Promise<SSRBuffer> {
|
|
return renderComponentVNode(
|
|
createVNode(comp, props, children),
|
|
parentComponent,
|
|
slotScopeId
|
|
)
|
|
}
|