Evan You c75388d538 release: v3.0.0-alpha.8 6 лет назад
..
__tests__ 4a5b91bd1f fix(runtime-core): fix slot fallback + slots typing 6 лет назад
src 80904e92b8 types: cleanup renderer & hydration typing 6 лет назад
LICENSE 34989ef7fe chore: license 6 лет назад
README.md 1b2878d80f chore: update runtime-dom/README example to latest signature (#693) [ci skip] 6 лет назад
api-extractor.json b2d269a651 build: use api-extractor for type rollup 6 лет назад
index.js e05673f4d3 refactor: rename packages 7 лет назад
jsx.d.ts 54bb820f73 types: update jsx support (#587) 6 лет назад
package.json c75388d538 release: v3.0.0-alpha.8 6 лет назад

README.md

@vue/runtime-dom

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

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

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