MCPcopy
hub / github.com/vuejs/core / renderVNodeChildren

Function renderVNodeChildren

packages/server-renderer/src/render.ts:282–291  ·  view source on GitHub ↗
(
  push: PushFn,
  children: VNodeArrayChildren,
  parentComponent: ComponentInternalInstance,
  slotScopeId?: string,
)

Source from the content-addressed store, hash-verified

280}
281
282export function renderVNodeChildren(
283 push: PushFn,
284 children: VNodeArrayChildren,
285 parentComponent: ComponentInternalInstance,
286 slotScopeId?: string,
287): void {
288 for (let i = 0; i < children.length; i++) {
289 renderVNode(push, normalizeVNode(children[i]), parentComponent, slotScopeId)
290 }
291}
292
293function renderElementVNode(
294 push: PushFn,

Callers 4

ssrRenderSlotInnerFunction · 0.90
renderVNodeFunction · 0.85
renderElementVNodeFunction · 0.85
renderTeleportVNodeFunction · 0.85

Calls 2

renderVNodeFunction · 0.85
normalizeVNodeFunction · 0.85

Tested by

no test coverage detected