[ICO]NameLast modifiedSizeDescription
[PARENTDIR]Parent Directory  -  
[DIR]dist/2024-05-21 17:04 -  
[   ]LICENSE2024-05-21 17:04 1.1K 
[TXT]README.md2024-05-21 17:04 198 595aea1 more query options + view options [كارل مبارك]
[   ]index.js2024-05-21 17:04 187  
[   ]package.json2024-05-21 17:04 1.3Kafd0ccc remove unused [كارل مبارك]
# @vue/runtime-dom

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

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

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