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