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

Function createVNodeWithArgsTransform

packages/runtime-core/src/vnode.ts:426–434  ·  view source on GitHub ↗
(
  ...args: Parameters<typeof _createVNode>
)

Source from the content-addressed store, hash-verified

424}
425
426const createVNodeWithArgsTransform = (
427 ...args: Parameters<typeof _createVNode>
428): VNode => {
429 return _createVNode(
430 ...(vnodeArgsTransformer
431 ? vnodeArgsTransformer(args, currentRenderingInstance)
432 : args),
433 )
434}
435
436const normalizeKey = ({ key }: VNodeProps): VNode['key'] =>
437 key != null ? key : null

Callers

nothing calls this directly

Calls 1

_createVNodeFunction · 0.85

Tested by

no test coverage detected