xubo 5655c75f91 first commit il y a 2 ans
..
dist 5655c75f91 first commit il y a 2 ans
LICENSE 5655c75f91 first commit il y a 2 ans
README.md 5655c75f91 first commit il y a 2 ans
index.js 5655c75f91 first commit il y a 2 ans
package.json 5655c75f91 first commit il y a 2 ans

README.md

@vue/runtime-dom

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

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

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