Etherealcs 3f05a357e8 init hace 10 meses
..
dist 3f05a357e8 init hace 10 meses
LICENSE 3f05a357e8 init hace 10 meses
README.md 3f05a357e8 init hace 10 meses
index.js 3f05a357e8 init hace 10 meses
package.json 3f05a357e8 init hace 10 meses

README.md

@vue/runtime-dom

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

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

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