
Research
/Security News
Contagious Interview Campaign Escalates With 67 Malicious npm Packages and New Malware Loader
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
@vue/runtime-dom
Advanced tools
The @vue/runtime-dom package is a core part of Vue.js, specifically designed for working with the DOM in web browsers. It provides methods and utilities for managing the DOM, handling events, and rendering components dynamically. This package is essential for building interactive web applications using Vue.js.
DOM Manipulation
This feature allows developers to manipulate the DOM by creating and mounting Vue components. The code sample demonstrates how to create a simple Vue application that renders 'Hello World' inside a div element.
import { createApp, h } from 'vue';
const App = { render() { return h('div', 'Hello World'); } };
createApp(App).mount('#app');
Event Handling
This feature enables handling of user events such as clicks. The code sample shows how to create a Vue component with a button that alerts the user when clicked.
import { createApp, h } from 'vue';
const App = {
render() {
return h('button', {
onClick: this.handleClick
}, 'Click me');
},
methods: {
handleClick() {
alert('Button clicked');
}
}
};
createApp(App).mount('#app');
Component Rendering
This feature deals with rendering components within other components. The code sample illustrates how to define and render nested components using Vue's composition API.
import { createApp, defineComponent, h } from 'vue';
const ChildComponent = defineComponent({
render() {
return h('p', 'I am a child component');
}
});
const ParentComponent = defineComponent({
render() {
return h('div', [
h('h1', 'This is a parent component'),
h(ChildComponent)
]);
}
});
createApp(ParentComponent).mount('#app');
Similar to @vue/runtime-dom, react-dom is used with React to interact with the DOM in web applications. While @vue/runtime-dom is tailored for Vue.js, react-dom provides comparable functionalities for React, such as rendering components and handling events.
Angular is a full-fledged framework that includes its own methods for DOM manipulation and component management, similar to what @vue/runtime-dom offers for Vue.js. Angular's approach is more prescriptive with a stronger emphasis on structure and application architecture.
import { h, createApp } from '@vue/runtime-dom'
const RootComponent = {
render() {
return h('div', 'hello world')
},
}
createApp(RootComponent).mount('#app')
3.5.17 (2025-06-18)
InEntity
state (#13362) (f05a8d6)__v_skip
flag to Dep
to prevent reactive conversion (#12804) (e8d8f5f), closes #12803vOnce
and vSlot
(#13343) (762fae4)FAQs
@vue/runtime-dom
The npm package @vue/runtime-dom receives a total of 2,959,605 weekly downloads. As such, @vue/runtime-dom popularity was classified as popular.
We found that @vue/runtime-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.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.