show() — vue Function Reference
Architecture documentation for the show() function in show.ts from the vue codebase.
Entity Profile
Relationship Graph
Source Code
packages/server-renderer/src/directives/show.ts lines 3–12
export default function show(node: VNodeWithData, dir: VNodeDirective) {
if (!dir.value) {
const style: any = node.data.style || (node.data.style = {})
if (Array.isArray(style)) {
style.push({ display: 'none' })
} else {
style.display = 'none'
}
}
}
Domain
Subdomains
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free