Etherealcs 3f05a357e8 init il y a 10 mois
..
dist 3f05a357e8 init il y a 10 mois
LICENSE 3f05a357e8 init il y a 10 mois
README.md 3f05a357e8 init il y a 10 mois
index.js 3f05a357e8 init il y a 10 mois
package.json 3f05a357e8 init il y a 10 mois

README.md

@vue/runtime-dom

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

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

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