txq 7c2ff95c00 第一次上传 hai 11 meses
..
dist 7c2ff95c00 第一次上传 hai 11 meses
LICENSE 7c2ff95c00 第一次上传 hai 11 meses
README.md 7c2ff95c00 第一次上传 hai 11 meses
index.js 7c2ff95c00 第一次上传 hai 11 meses
package.json 7c2ff95c00 第一次上传 hai 11 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')