getRealChild() — vue Function Reference
Architecture documentation for the getRealChild() function in transition.ts from the vue codebase.
Entity Profile
Dependency Diagram
graph TD 2ca4115c_d03a_76ae_e09f_28ed9bf97389["getRealChild()"] 14dd3d9c_2894_3049_ac41_2970261c2033["default.render()"] 14dd3d9c_2894_3049_ac41_2970261c2033 -->|calls| 2ca4115c_d03a_76ae_e09f_28ed9bf97389 style 2ca4115c_d03a_76ae_e09f_28ed9bf97389 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
src/platforms/web/runtime/components/transition.ts lines 34–41
function getRealChild(vnode?: VNode): VNode | undefined {
const compOptions = vnode && vnode.componentOptions
if (compOptions && compOptions.Ctor.options.abstract) {
return getRealChild(getFirstComponentChild(compOptions.children))
} else {
return vnode
}
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does getRealChild() do?
getRealChild() is a function in the vue codebase.
What calls getRealChild()?
getRealChild() is called by 1 function(s): default.render.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free