Zhangbw 1f866b6aa1 初始化 hai 2 meses
..
dist 1f866b6aa1 初始化 hai 2 meses
LICENSE 1f866b6aa1 初始化 hai 2 meses
README.md 1f866b6aa1 初始化 hai 2 meses
index.js 1f866b6aa1 初始化 hai 2 meses
package.json 1f866b6aa1 初始化 hai 2 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')