wenhongquan cca3b05511 first commit 1 anno fa
..
dist cca3b05511 first commit 1 anno fa
LICENSE cca3b05511 first commit 1 anno fa
README.md cca3b05511 first commit 1 anno fa
index.js cca3b05511 first commit 1 anno fa
package.json cca3b05511 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')