yzx 014fe438c7 yzx há 2 meses atrás
..
dist 014fe438c7 yzx há 2 meses atrás
LICENSE 014fe438c7 yzx há 2 meses atrás
README.md 014fe438c7 yzx há 2 meses atrás
index.js 014fe438c7 yzx há 2 meses atrás
package.json 014fe438c7 yzx há 2 meses 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')