Home / Function/ isSameChild() — vue Function Reference

isSameChild() — vue Function Reference

Architecture documentation for the isSameChild() function in transition.ts from the vue codebase.

Entity Profile

Dependency Diagram

graph TD
  2a24ffbd_ea44_e98c_52cc_b541de95fb7d["isSameChild()"]
  b0a7d15f_5bac_dc6f_49fa_0554a1565637["transition.ts"]
  2a24ffbd_ea44_e98c_52cc_b541de95fb7d -->|defined in| b0a7d15f_5bac_dc6f_49fa_0554a1565637
  1320adb5_5107_07f8_1ce0_f5863182564d["default.render()"]
  1320adb5_5107_07f8_1ce0_f5863182564d -->|calls| 2a24ffbd_ea44_e98c_52cc_b541de95fb7d
  style 2a24ffbd_ea44_e98c_52cc_b541de95fb7d fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

src/platforms/web/runtime/components/transition.ts lines 76–78

function isSameChild(child: VNode, oldChild: VNode): boolean {
  return oldChild.key === child.key && oldChild.tag === child.tag
}

Domain

Subdomains

Called By

Frequently Asked Questions

What does isSameChild() do?
isSameChild() is a function in the vue codebase, defined in src/platforms/web/runtime/components/transition.ts.
Where is isSameChild() defined?
isSameChild() is defined in src/platforms/web/runtime/components/transition.ts at line 76.
What calls isSameChild()?
isSameChild() is called by 1 function(s): default.render.

Analyze Your Own Codebase

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

Try Supermodel Free