puyao ff9058ff03 首次提交信息 2 tygodni temu
..
dist ff9058ff03 首次提交信息 2 tygodni temu
LICENSE ff9058ff03 首次提交信息 2 tygodni temu
README.md ff9058ff03 首次提交信息 2 tygodni temu
index.js ff9058ff03 首次提交信息 2 tygodni temu
package.json ff9058ff03 首次提交信息 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')