isInInactiveTree() — vue Function Reference
Architecture documentation for the isInInactiveTree() function in lifecycle.ts from the vue codebase.
Entity Profile
Dependency Diagram
graph TD 592ad59c_dc96_0090_45e0_7c78522da42e["isInInactiveTree()"] d5689118_f863_cb10_9794_80b2a5de55a7["activateChildComponent()"] d5689118_f863_cb10_9794_80b2a5de55a7 -->|calls| 592ad59c_dc96_0090_45e0_7c78522da42e 1e40b5e4_897b_253f_e139_244ce2b36a54["deactivateChildComponent()"] 1e40b5e4_897b_253f_e139_244ce2b36a54 -->|calls| 592ad59c_dc96_0090_45e0_7c78522da42e style 592ad59c_dc96_0090_45e0_7c78522da42e fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
src/core/instance/lifecycle.ts lines 353–358
function isInInactiveTree(vm) {
while (vm && (vm = vm.$parent)) {
if (vm._inactive) return true
}
return false
}
Domain
Subdomains
Source
Frequently Asked Questions
What does isInInactiveTree() do?
isInInactiveTree() is a function in the vue codebase.
What calls isInInactiveTree()?
isInInactiveTree() is called by 2 function(s): activateChildComponent, deactivateChildComponent.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free