Bakhtina Sofya 441b76b729 first commit il y a 3 semaines
..
dist 441b76b729 first commit il y a 3 semaines
LICENSE 441b76b729 first commit il y a 3 semaines
README.md 441b76b729 first commit il y a 3 semaines
index.js 441b76b729 first commit il y a 3 semaines
package.json 441b76b729 first commit il y a 3 semaines

README.md

@vue/runtime-dom

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

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

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