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

README.md

@vue/runtime-dom

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

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

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