puyao c13483c660 首次提交 há 10 meses atrás
..
dist c13483c660 首次提交 há 10 meses atrás
LICENSE c13483c660 首次提交 há 10 meses atrás
README.md c13483c660 首次提交 há 10 meses atrás
index.js c13483c660 首次提交 há 10 meses atrás
package.json c13483c660 首次提交 há 10 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')