
Product
Introducing License Overlays: Smarter License Management for Real-World Code
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
@vue/compiler-dom
Advanced tools
The @vue/compiler-dom package is part of the Vue.js ecosystem, specifically designed for compiling Vue template syntax into render functions directly in the browser or on the server. It is a core utility for Vue's template compilation, enabling developers to pre-compile templates or compile them on the fly, optimizing performance and enhancing the development experience with Vue.js applications.
Compiling Template Strings
This feature allows developers to compile Vue template strings into render functions. The compiled code can then be used to render Vue components dynamically. This is particularly useful for applications that need to compile templates on the fly, such as those that receive template code from a server.
import { compile } from '@vue/compiler-dom';
const { code } = compile('<div>{{ message }}</div>');
console.log(code);
Parsing Template Options
The package provides functionality to parse template strings into Abstract Syntax Trees (ASTs). This is useful for tools and libraries that need to analyze or manipulate Vue templates at a syntactic level, enabling advanced use cases like static analysis, linting, and custom transformations.
import { parse, baseParse } from '@vue/compiler-dom';
const ast = baseParse('<div>{{ message }}</div>');
console.log(ast);
Transforming AST Nodes
After parsing a template into an AST, @vue/compiler-dom allows developers to apply transformations to the AST nodes. This feature is powerful for creating custom directives or modifying the behavior of existing ones, enabling a high degree of customization and optimization for Vue applications.
import { transform } from '@vue/compiler-dom';
transform(ast, {
nodeTransforms: [/* array of node transform functions */]
});
This package is a Babel plugin that transforms JSX syntax into Vue render functions. While it serves a similar purpose to @vue/compiler-dom by enabling developers to write Vue components using JSX, it operates within the Babel ecosystem and requires a build step, unlike @vue/compiler-dom which can compile templates on the fly.
Part of the Vue 2 ecosystem, this package compiles Vue 2 templates into render functions. It is similar to @vue/compiler-dom but is specifically tailored for Vue 2, whereas @vue/compiler-dom is designed for Vue 3. The vue-template-compiler package is essential for Vue 2 development, offering compatibility with Vue 2's reactivity system and component structure.
3.5.18 (2025-07-23)
v-pre
(#12556) (21b685a)v-bind
dynamic argument content correctly (#12554) (d3af67e)FAQs
@vue/compiler-dom
The npm package @vue/compiler-dom receives a total of 7,910,677 weekly downloads. As such, @vue/compiler-dom popularity was classified as popular.
We found that @vue/compiler-dom demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.
Product
Socket’s precomputed reachability slashes false positives by flagging up to 80% of vulnerabilities as irrelevant, with no setup and instant results.