Home / Function/ cleanupDeps() — vue Function Reference

cleanupDeps() — vue Function Reference

Architecture documentation for the cleanupDeps() function in dep.ts from the vue codebase.

Entity Profile

Dependency Diagram

graph TD
  e284d477_da35_6b60_95cf_55ca5a80225b["cleanupDeps()"]
  e5c4d6ab_2495_a6d4_d962_9d9f71bf3114["dep.ts"]
  e284d477_da35_6b60_95cf_55ca5a80225b -->|defined in| e5c4d6ab_2495_a6d4_d962_9d9f71bf3114
  55c27de4_ac93_74ee_727e_97a8a8b978d4["cleanupDeps()"]
  55c27de4_ac93_74ee_727e_97a8a8b978d4 -->|calls| e284d477_da35_6b60_95cf_55ca5a80225b
  07ee0e45_f4fc_db24_4b7f_12ba4b3026a3["flushSchedulerQueue()"]
  07ee0e45_f4fc_db24_4b7f_12ba4b3026a3 -->|calls| e284d477_da35_6b60_95cf_55ca5a80225b
  style e284d477_da35_6b60_95cf_55ca5a80225b fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

src/core/observer/dep.ts lines 8–15

export const cleanupDeps = () => {
  for (let i = 0; i < pendingCleanupDeps.length; i++) {
    const dep = pendingCleanupDeps[i]
    dep.subs = dep.subs.filter(s => s)
    dep._pending = false
  }
  pendingCleanupDeps.length = 0
}

Domain

Subdomains

Frequently Asked Questions

What does cleanupDeps() do?
cleanupDeps() is a function in the vue codebase, defined in src/core/observer/dep.ts.
Where is cleanupDeps() defined?
cleanupDeps() is defined in src/core/observer/dep.ts at line 8.
What calls cleanupDeps()?
cleanupDeps() is called by 2 function(s): cleanupDeps, flushSchedulerQueue.

Analyze Your Own Codebase

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

Try Supermodel Free