![]() | Name | Last modified | Size | Description |
---|---|---|---|---|
![]() | Parent Directory | - | ||
![]() | dist/ | 9 months ago | - | |
![]() | LICENSE | 9 months ago | 1.1K | |
![]() | README.md | 9 months ago | 198 | |
![]() | index.js | 9 months ago | 187 | |
![]() | package.json | 9 months ago | 1.3K |
import { h, createApp } from '@vue/runtime-dom'
const RootComponent = {
render() {
return h('div', 'hello world')
}
}
createApp(RootComponent).mount('#app')