Evan You 6eb3399311 fix(runtime-dom): fix patching for attributes starting with `on` 6 éve
..
__tests__ 6eb3399311 fix(runtime-dom): fix patching for attributes starting with `on` 6 éve
src 6eb3399311 fix(runtime-dom): fix patching for attributes starting with `on` 6 éve
LICENSE 34989ef7fe chore: license 6 éve
README.md 1b2878d80f chore: update runtime-dom/README example to latest signature (#693) [ci skip] 6 éve
api-extractor.json b2d269a651 build: use api-extractor for type rollup 6 éve
index.js e05673f4d3 refactor: rename packages 7 éve
jsx.d.ts 54bb820f73 types: update jsx support (#587) 6 éve
package.json 1d9f8fc979 release: v3.0.0-alpha.12 6 éve

README.md

@vue/runtime-dom

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

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

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