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

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

Analyze Your Own Codebase

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

Try Supermodel Free