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