| Name | Last modified | Size | Description | |
|---|---|---|---|---|
| Parent Directory | - | |||
| dist/ | 2023-06-13 07:16 | - | ||
| README.md | 2020-12-16 23:12 | 198 | d768d73 docs [كارل مبارك] | |
| package.json | 2023-06-13 07:17 | 1.8K | 3e510ca test new git [كارل مبارك] | |
| index.js | 2020-12-16 23:12 | 187 | 3e510ca test new git [كارل مبارك] | |
| LICENSE | 2020-12-16 23:12 | 1.1K |
# @vue/runtime-dom
``` js
import { h, createApp } from '@vue/runtime-dom'
const RootComponent = {
render() {
return h('div', 'hello world')
}
}
createApp(RootComponent).mount('#app')
```