[ICO]NameLast modifiedSizeDescription
[PARENTDIR]Parent Directory  -  
[DIR]dist/2023-06-13 07:16 -  
[   ]LICENSE2020-12-16 23:12 1.1K 
[TXT]README.md2020-12-16 23:12 198 d768d73 docs [كارل مبارك]
[   ]index.js2020-12-16 23:12 187 3e510ca test new git [كارل مبارك]
[   ]package.json2023-06-13 07:17 1.8K3e510ca test new git [كارل مبارك]
# @vue/runtime-dom

``` js
import { h, createApp } from '@vue/runtime-dom'

const RootComponent = {
  render() {
    return h('div', 'hello world')
  }
}

createApp(RootComponent).mount('#app')
```