Home / Function/ checkComponents() — vue Function Reference

checkComponents() — vue Function Reference

Architecture documentation for the checkComponents() function in options.ts from the vue codebase.

Function typescript VueCore Instance calls 1 called by 1

Entity Profile

Dependency Diagram

graph TD
  90eff807_db4c_cc74_cbcc_389cda3db27c["checkComponents()"]
  395cc6b0_6f88_f1b1_f5dd_8cdf5c229777["options.ts"]
  90eff807_db4c_cc74_cbcc_389cda3db27c -->|defined in| 395cc6b0_6f88_f1b1_f5dd_8cdf5c229777
  85601896_bdd4_0d52_f164_49f970cbbef3["mergeOptions()"]
  85601896_bdd4_0d52_f164_49f970cbbef3 -->|calls| 90eff807_db4c_cc74_cbcc_389cda3db27c
  73b79403_86a7_b172_0305_5929163303d0["validateComponentName()"]
  90eff807_db4c_cc74_cbcc_389cda3db27c -->|calls| 73b79403_86a7_b172_0305_5929163303d0
  style 90eff807_db4c_cc74_cbcc_389cda3db27c fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

src/core/util/options.ts lines 293–297

function checkComponents(options: Record<string, any>) {
  for (const key in options.components) {
    validateComponentName(key)
  }
}

Domain

Subdomains

Called By

Frequently Asked Questions

What does checkComponents() do?
checkComponents() is a function in the vue codebase, defined in src/core/util/options.ts.
Where is checkComponents() defined?
checkComponents() is defined in src/core/util/options.ts at line 293.
What does checkComponents() call?
checkComponents() calls 1 function(s): validateComponentName.
What calls checkComponents()?
checkComponents() is called by 1 function(s): mergeOptions.

Analyze Your Own Codebase

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

Try Supermodel Free