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

README.md

@vue/runtime-dom

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

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

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