Files
scrap/webui/node_modules/@vue/runtime-dom/README.md
Gilles Soulier dc19315e5d claudec3
2026-01-17 15:58:01 +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')
```