app php01 790c53caa0 最后一版uniaiim hai 10 meses
..
dist 790c53caa0 最后一版uniaiim hai 10 meses
node_modules 790c53caa0 最后一版uniaiim hai 10 meses
LICENSE 790c53caa0 最后一版uniaiim hai 10 meses
README.md 790c53caa0 最后一版uniaiim hai 10 meses
index.js 790c53caa0 最后一版uniaiim hai 10 meses
package.json 790c53caa0 最后一版uniaiim hai 10 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')