Files
skills-here-run-place/node_modules/@vue/runtime-dom/README.md
Alejandro Martinez f09af719cf Initial commit
2026-02-12 02:04:10 +01:00

14 lines
198 B
Markdown

# @vue/runtime-dom
```js
import { h, createApp } from '@vue/runtime-dom'
const RootComponent = {
render() {
return h('div', 'hello world')
},
}
createApp(RootComponent).mount('#app')
```