冯博深 e3294c98a1 first il y a 1 jour
..
dist e3294c98a1 first il y a 1 jour
LICENSE e3294c98a1 first il y a 1 jour
README.md e3294c98a1 first il y a 1 jour
index.js e3294c98a1 first il y a 1 jour
package.json e3294c98a1 first il y a 1 jour

README.md

@vue/runtime-dom

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

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

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