default.mounted() — vue Function Reference
Architecture documentation for the default.mounted() function in keep-alive.ts from the vue codebase.
Entity Profile
Dependency Diagram
graph TD 95daccf5_70b0_580d_db27_436322c3d845["default.mounted()"] b0411514_5aab_a7ba_2f4b_a2aab97320ea["pruneCache()"] 95daccf5_70b0_580d_db27_436322c3d845 -->|calls| b0411514_5aab_a7ba_2f4b_a2aab97320ea b900aa1d_e4c9_7752_d919_7e52ac95b173["matches()"] 95daccf5_70b0_580d_db27_436322c3d845 -->|calls| b900aa1d_e4c9_7752_d919_7e52ac95b173 style 95daccf5_70b0_580d_db27_436322c3d845 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
src/core/components/keep-alive.ts lines 116–124
mounted() {
this.cacheVNode()
this.$watch('include', val => {
pruneCache(this, name => matches(val, name))
})
this.$watch('exclude', val => {
pruneCache(this, name => !matches(val, name))
})
},
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does default.mounted() do?
default.mounted() is a function in the vue codebase.
What does default.mounted() call?
default.mounted() calls 2 function(s): matches, pruneCache.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free