puyao c13483c660 首次提交 пре 10 месеци
..
dist c13483c660 首次提交 пре 10 месеци
LICENSE c13483c660 首次提交 пре 10 месеци
README.md c13483c660 首次提交 пре 10 месеци
index.js c13483c660 首次提交 пре 10 месеци
package.json c13483c660 首次提交 пре 10 месеци

README.md

@vue/runtime-dom

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

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

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