zhangqiOMG 67f5284abf 首次提交 il y a 2 ans
..
dist 67f5284abf 首次提交 il y a 2 ans
LICENSE 67f5284abf 首次提交 il y a 2 ans
README.md 67f5284abf 首次提交 il y a 2 ans
index.js 67f5284abf 首次提交 il y a 2 ans
package.json 67f5284abf 首次提交 il y a 2 ans

README.md

@vue/runtime-dom

import { h, createApp } from '@vue/runtime-dom'

const RootComponent = {
  render() {
    return h('div', 'hello world')
  }
}

createApp(RootComponent).mount('#app')