Home / Function/ callPendingCbs() — vue Function Reference

callPendingCbs() — vue Function Reference

Architecture documentation for the callPendingCbs() function in transition-group.ts from the vue codebase.

Entity Profile

Dependency Diagram

graph TD
  04574a0c_0bb6_d0a2_4165_51e836bdcf60["callPendingCbs()"]
  7c91c607_f320_9fb6_0e00_4e5d50689bec["transition-group.ts"]
  04574a0c_0bb6_d0a2_4165_51e836bdcf60 -->|defined in| 7c91c607_f320_9fb6_0e00_4e5d50689bec
  style 04574a0c_0bb6_d0a2_4165_51e836bdcf60 fill:#6366f1,stroke:#818cf8,color:#fff

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

Frequently Asked Questions

What does callPendingCbs() do?
callPendingCbs() is a function in the vue codebase, defined in src/platforms/web/runtime/components/transition-group.ts.
Where is callPendingCbs() defined?
callPendingCbs() is defined in src/platforms/web/runtime/components/transition-group.ts at line 176.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free