callPendingCbs() — vue Function Reference
Architecture documentation for the callPendingCbs() function in transition-group.ts from the vue codebase.
Entity Profile
Relationship Graph
Source Code
src/platforms/web/runtime/components/transition-group.ts lines 176–187
function callPendingCbs(
c: VNodeWithData & { elm?: { _moveCb?: Function; _enterCb?: Function } }
) {
/* istanbul ignore if */
if (c.elm!._moveCb) {
c.elm!._moveCb()
}
/* istanbul ignore if */
if (c.elm!._enterCb) {
c.elm!._enterCb()
}
}
Domain
Subdomains
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free