snow 876895dd80 build hace 1 mes
..
dist 876895dd80 build hace 1 mes
LICENSE 876895dd80 build hace 1 mes
README.md 876895dd80 build hace 1 mes
index.js 876895dd80 build hace 1 mes
package.json 876895dd80 build 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')