puyao c13483c660 首次提交 10 ay önce
..
dist c13483c660 首次提交 10 ay önce
LICENSE c13483c660 首次提交 10 ay önce
README.md c13483c660 首次提交 10 ay önce
index.js c13483c660 首次提交 10 ay önce
package.json c13483c660 首次提交 10 ay önce

README.md

@vue/runtime-dom

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

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

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