Evan You 42278317e1 fix(transition): should ship props declarations in production před 6 roky
..
__tests__ f87d6b501e test: fix runtime-dom v-on test před 6 roky
src 42278317e1 fix(transition): should ship props declarations in production před 6 roky
LICENSE 34989ef7fe chore: license před 6 roky
README.md 1b2878d80f chore: update runtime-dom/README example to latest signature (#693) [ci skip] před 6 roky
api-extractor.json b2d269a651 build: use api-extractor for type rollup před 6 roky
index.js e05673f4d3 refactor: rename packages před 7 roky
jsx.d.ts 54bb820f73 types: update jsx support (#587) před 6 roky
package.json 7402951d94 release: v3.0.0-alpha.11 před 6 roky

README.md

@vue/runtime-dom

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

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

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