callActivatedHooks() — vue Function Reference
Architecture documentation for the callActivatedHooks() function in scheduler.ts from the vue codebase.
Entity Profile
Dependency Diagram
graph TD 631fda9c_cd56_d5a1_0408_8bc73fc68929["callActivatedHooks()"] 7cc5a667_1876_f28e_e26f_27fcdcba292e["scheduler.ts"] 631fda9c_cd56_d5a1_0408_8bc73fc68929 -->|defined in| 7cc5a667_1876_f28e_e26f_27fcdcba292e f5b111c0_f7e1_77b3_8a0f_5e97da3014ec["flushSchedulerQueue()"] f5b111c0_f7e1_77b3_8a0f_5e97da3014ec -->|calls| 631fda9c_cd56_d5a1_0408_8bc73fc68929 c839785a_cc49_21a8_563d_d8789c68747b["activateChildComponent()"] 631fda9c_cd56_d5a1_0408_8bc73fc68929 -->|calls| c839785a_cc49_21a8_563d_d8789c68747b style 631fda9c_cd56_d5a1_0408_8bc73fc68929 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
src/core/observer/scheduler.ts lines 155–160
function callActivatedHooks(queue) {
for (let i = 0; i < queue.length; i++) {
queue[i]._inactive = true
activateChildComponent(queue[i], true /* true */)
}
}
Domain
Subdomains
Defined In
Calls
Called By
Source
Frequently Asked Questions
What does callActivatedHooks() do?
callActivatedHooks() is a function in the vue codebase, defined in src/core/observer/scheduler.ts.
Where is callActivatedHooks() defined?
callActivatedHooks() is defined in src/core/observer/scheduler.ts at line 155.
What does callActivatedHooks() call?
callActivatedHooks() calls 1 function(s): activateChildComponent.
What calls callActivatedHooks()?
callActivatedHooks() is called by 1 function(s): flushSchedulerQueue.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free