Home / Function/ containsSlotChild() — vue Function Reference

containsSlotChild() — vue Function Reference

Architecture documentation for the containsSlotChild() function in index.ts from the vue codebase.

Entity Profile

Dependency Diagram

graph TD
  bf8a930d_6047_f0d8_7c18_26061f0d2664["containsSlotChild()"]
  6a18399e_553e_fef8_6a39_746f79f94bd2["index.ts"]
  bf8a930d_6047_f0d8_7c18_26061f0d2664 -->|defined in| 6a18399e_553e_fef8_6a39_746f79f94bd2
  e76cb7d0_b3c3_6c47_2e67_6c6f84d32371["genScopedSlots()"]
  e76cb7d0_b3c3_6c47_2e67_6c6f84d32371 -->|calls| bf8a930d_6047_f0d8_7c18_26061f0d2664
  style bf8a930d_6047_f0d8_7c18_26061f0d2664 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

src/compiler/codegen/index.ts lines 479–487

function containsSlotChild(el: ASTNode): boolean {
  if (el.type === 1) {
    if (el.tag === 'slot') {
      return true
    }
    return el.children.some(containsSlotChild)
  }
  return false
}

Domain

Subdomains

Called By

Frequently Asked Questions

What does containsSlotChild() do?
containsSlotChild() is a function in the vue codebase, defined in src/compiler/codegen/index.ts.
Where is containsSlotChild() defined?
containsSlotChild() is defined in src/compiler/codegen/index.ts at line 479.
What calls containsSlotChild()?
containsSlotChild() is called by 1 function(s): genScopedSlots.

Analyze Your Own Codebase

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

Try Supermodel Free