xubo 5655c75f91 first commit 1 éve
..
dist 5655c75f91 first commit 1 éve
LICENSE 5655c75f91 first commit 1 éve
README.md 5655c75f91 first commit 1 éve
index.js 5655c75f91 first commit 1 éve
package.json 5655c75f91 first commit 1 éve

README.md

@vue/runtime-dom

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

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

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