不会爬树的猴 22729588bd AA hace 2 años
..
dist 22729588bd AA hace 2 años
node_modules 22729588bd AA hace 2 años
LICENSE 22729588bd AA hace 2 años
README.md 22729588bd AA hace 2 años
index.js 22729588bd AA hace 2 años
package.json 22729588bd AA 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')