Jacek Karczmarczyk 1b2878d80f chore: update runtime-dom/README example to latest signature (#693) [ci skip] %!s(int64=6) %!d(string=hai) anos
..
__tests__ c07751fd36 refactor: adjust `createApp` related API signatures %!s(int64=6) %!d(string=hai) anos
src e6e2c58234 fix(runtime-dom/ssr): properly handle xlink and boolean attributes %!s(int64=6) %!d(string=hai) anos
LICENSE 34989ef7fe chore: license %!s(int64=6) %!d(string=hai) anos
README.md 1b2878d80f chore: update runtime-dom/README example to latest signature (#693) [ci skip] %!s(int64=6) %!d(string=hai) anos
api-extractor.json b2d269a651 build: use api-extractor for type rollup %!s(int64=6) %!d(string=hai) anos
index.js e05673f4d3 refactor: rename packages %!s(int64=7) %!d(string=hai) anos
jsx.d.ts 54bb820f73 types: update jsx support (#587) %!s(int64=6) %!d(string=hai) anos
package.json d293876c34 release: v3.0.0-alpha.4 %!s(int64=6) %!d(string=hai) anos

README.md

@vue/runtime-dom

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

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

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