xubo 5655c75f91 first commit 1 anno fa
..
dist 5655c75f91 first commit 1 anno fa
LICENSE 5655c75f91 first commit 1 anno fa
README.md 5655c75f91 first commit 1 anno fa
index.js 5655c75f91 first commit 1 anno fa
package.json 5655c75f91 first commit 1 anno fa

README.md

@vue/runtime-dom

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

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

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