Home / Function/ registerDeepBindings() — vue Function Reference

registerDeepBindings() — vue Function Reference

Architecture documentation for the registerDeepBindings() function in create-element.ts from the vue codebase.

Function typescript VueCore Observer calls 1 called by 1

Entity Profile

Dependency Diagram

graph TD
  2117e9b1_9581_28b9_1c09_0a71bae9a8c1["registerDeepBindings()"]
  4b23edff_adcb_6cfb_ca7d_b6d38b4a1921["create-element.ts"]
  2117e9b1_9581_28b9_1c09_0a71bae9a8c1 -->|defined in| 4b23edff_adcb_6cfb_ca7d_b6d38b4a1921
  97662195_00aa_821a_3a03_9901c7f344e9["_createElement()"]
  97662195_00aa_821a_3a03_9901c7f344e9 -->|calls| 2117e9b1_9581_28b9_1c09_0a71bae9a8c1
  1590b3d4_b603_9a95_ff78_1330c383e860["traverse()"]
  2117e9b1_9581_28b9_1c09_0a71bae9a8c1 -->|calls| 1590b3d4_b603_9a95_ff78_1330c383e860
  style 2117e9b1_9581_28b9_1c09_0a71bae9a8c1 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

src/core/vdom/create-element.ts lines 165–172

function registerDeepBindings(data) {
  if (isObject(data.style)) {
    traverse(data.style)
  }
  if (isObject(data.class)) {
    traverse(data.class)
  }
}

Domain

Subdomains

Calls

Called By

Frequently Asked Questions

What does registerDeepBindings() do?
registerDeepBindings() is a function in the vue codebase, defined in src/core/vdom/create-element.ts.
Where is registerDeepBindings() defined?
registerDeepBindings() is defined in src/core/vdom/create-element.ts at line 165.
What does registerDeepBindings() call?
registerDeepBindings() calls 1 function(s): traverse.
What calls registerDeepBindings()?
registerDeepBindings() is called by 1 function(s): _createElement.

Analyze Your Own Codebase

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

Try Supermodel Free