puyao c13483c660 首次提交 hai 10 meses
..
dist c13483c660 首次提交 hai 10 meses
LICENSE c13483c660 首次提交 hai 10 meses
README.md c13483c660 首次提交 hai 10 meses
index.js c13483c660 首次提交 hai 10 meses
package.json c13483c660 首次提交 hai 10 meses

README.md

@vue/runtime-dom

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

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

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