Etherealcs 3f05a357e8 init 10 hónapja
..
dist 3f05a357e8 init 10 hónapja
LICENSE 3f05a357e8 init 10 hónapja
README.md 3f05a357e8 init 10 hónapja
index.js 3f05a357e8 init 10 hónapja
package.json 3f05a357e8 init 10 hónapja

README.md

@vue/runtime-dom

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

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

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