puyao c13483c660 首次提交 2 viikkoa sitten
..
dist c13483c660 首次提交 2 viikkoa sitten
LICENSE c13483c660 首次提交 2 viikkoa sitten
README.md c13483c660 首次提交 2 viikkoa sitten
index.js c13483c660 首次提交 2 viikkoa sitten
package.json c13483c660 首次提交 2 viikkoa sitten

README.md

@vue/runtime-dom

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

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

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