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')