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
  43efb8ca_ddca_ddda_08e2_36210df7bc42["callPendingCbs()"]
  f7026368_bf6f_2dd0_00ce_f887a9165898["transition-group.ts"]
  43efb8ca_ddca_ddda_08e2_36210df7bc42 -->|defined in| f7026368_bf6f_2dd0_00ce_f887a9165898
  style 43efb8ca_ddca_ddda_08e2_36210df7bc42 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