app php01 790c53caa0 最后一版uniaiim hai 4 meses
..
dist 790c53caa0 最后一版uniaiim hai 4 meses
node_modules 790c53caa0 最后一版uniaiim hai 4 meses
LICENSE 790c53caa0 最后一版uniaiim hai 4 meses
README.md 790c53caa0 最后一版uniaiim hai 4 meses
index.js 790c53caa0 最后一版uniaiim hai 4 meses
package.json 790c53caa0 最后一版uniaiim hai 4 meses

README.md

@vue/runtime-dom

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

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

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