Evan You d866d389f3 chore: fix import path + comment hace 6 años
..
__tests__ c07751fd36 refactor: adjust `createApp` related API signatures hace 6 años
src d866d389f3 chore: fix import path + comment hace 6 años
LICENSE 34989ef7fe chore: license hace 6 años
README.md 1b2878d80f chore: update runtime-dom/README example to latest signature (#693) [ci skip] hace 6 años
api-extractor.json b2d269a651 build: use api-extractor for type rollup hace 6 años
index.js e05673f4d3 refactor: rename packages hace 7 años
jsx.d.ts 54bb820f73 types: update jsx support (#587) hace 6 años
package.json d293876c34 release: v3.0.0-alpha.4 hace 6 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')