zhangqiOMG 67f5284abf 首次提交 hace 2 años
..
dist 67f5284abf 首次提交 hace 2 años
LICENSE 67f5284abf 首次提交 hace 2 años
README.md 67f5284abf 首次提交 hace 2 años
index.js 67f5284abf 首次提交 hace 2 años
package.json 67f5284abf 首次提交 hace 2 años

README.md

@vue/runtime-dom

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

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

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