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