night-cherry c3c5588342 web project files hace 1 mes
..
dist c3c5588342 web project files hace 1 mes
LICENSE c3c5588342 web project files hace 1 mes
README.md c3c5588342 web project files hace 1 mes
index.js c3c5588342 web project files hace 1 mes
package.json c3c5588342 web project files hace 1 mes

README.md

@vue/runtime-dom

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

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

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