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