getRealChild() — vue Function Reference
Architecture documentation for the getRealChild() function in transition.ts from the vue codebase.
Entity Profile
Dependency Diagram
graph TD 96db6e05_87aa_8b96_0344_10d5a8e15e47["getRealChild()"] 4092d37a_e401_1398_7538_ace18f6c50d5["transition.ts"] 96db6e05_87aa_8b96_0344_10d5a8e15e47 -->|defined in| 4092d37a_e401_1398_7538_ace18f6c50d5 72e47df1_f475_b052_b735_29fdce7cc0ac["default.render()"] 72e47df1_f475_b052_b735_29fdce7cc0ac -->|calls| 96db6e05_87aa_8b96_0344_10d5a8e15e47 style 96db6e05_87aa_8b96_0344_10d5a8e15e47 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, defined in src/platforms/web/runtime/components/transition.ts.
Where is getRealChild() defined?
getRealChild() is defined in src/platforms/web/runtime/components/transition.ts at line 34.
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