wenhongquan cca3b05511 first commit il y a 1 an
..
dist cca3b05511 first commit il y a 1 an
LICENSE cca3b05511 first commit il y a 1 an
README.md cca3b05511 first commit il y a 1 an
index.js cca3b05511 first commit il y a 1 an
package.json cca3b05511 first commit il y a 1 an

README.md

@vue/runtime-dom

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

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

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