puyao c13483c660 首次提交 10 månader sedan
..
dist c13483c660 首次提交 10 månader sedan
LICENSE c13483c660 首次提交 10 månader sedan
README.md c13483c660 首次提交 10 månader sedan
index.js c13483c660 首次提交 10 månader sedan
package.json c13483c660 首次提交 10 månader sedan

README.md

@vue/runtime-dom

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

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

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