getTagNamespace() — vue Function Reference
Architecture documentation for the getTagNamespace() function in element.ts from the vue codebase.
Entity Profile
Relationship Graph
Source Code
src/platforms/web/util/element.ts lines 38–47
export function getTagNamespace(tag: string): string | undefined {
if (isSVG(tag)) {
return 'svg'
}
// basic support for MathML
// note it doesn't support other MathML elements being component roots
if (tag === 'math') {
return 'math'
}
}
Domain
Subdomains
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free