root 70a2ca66f3 first commit há 6 dias atrás
..
dist 70a2ca66f3 first commit há 6 dias atrás
LICENSE 70a2ca66f3 first commit há 6 dias atrás
README.md 70a2ca66f3 first commit há 6 dias atrás
index.js 70a2ca66f3 first commit há 6 dias atrás
package.json 70a2ca66f3 first commit há 6 dias atrás

README.md

@vue/runtime-dom

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

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

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