( push: PushFn, children: VNodeArrayChildren, parentComponent: ComponentInternalInstance, slotScopeId?: string, )
| 280 | } |
| 281 | |
| 282 | export 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 | |
| 293 | function renderElementVNode( |
| 294 | push: PushFn, |
no test coverage detected