$mount() — vue Function Reference
Architecture documentation for the $mount() function in index.ts from the vue codebase.
Entity Profile
Dependency Diagram
graph TD 804497f5_ba68_ea64_1312_be41ae032038["$mount()"] a471e6a5_8f7e_ccbd_de6e_5b12702970c0["query()"] 804497f5_ba68_ea64_1312_be41ae032038 -->|calls| a471e6a5_8f7e_ccbd_de6e_5b12702970c0 58398ca0_ee87_00ce_db95_d8e11ce46b1e["mountComponent()"] 804497f5_ba68_ea64_1312_be41ae032038 -->|calls| 58398ca0_ee87_00ce_db95_d8e11ce46b1e style 804497f5_ba68_ea64_1312_be41ae032038 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
src/platforms/web/runtime/index.ts lines 36–42
Vue.prototype.$mount = function (
el?: string | Element,
hydrating?: boolean
): Component {
el = el && inBrowser ? query(el) : undefined
return mountComponent(this, el, hydrating)
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does $mount() do?
$mount() is a function in the vue codebase.
What does $mount() call?
$mount() calls 2 function(s): mountComponent, query.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free