Evan You 136ab753b3 build: adjust esm formats il y a 6 ans
..
__tests__ d1527fbee4 test: add test for runtime-dom/modules/class (#75) il y a 6 ans
src d1527fbee4 test: add test for runtime-dom/modules/class (#75) il y a 6 ans
LICENSE 34989ef7fe chore: license il y a 6 ans
README.md 360f3b4f37 types: improve type exports il y a 6 ans
api-extractor.json b2d269a651 build: use api-extractor for type rollup il y a 6 ans
index.js e05673f4d3 refactor: rename packages il y a 7 ans
jsx.d.ts dfc7c0f12a refactor: adjust internal vnode types + more dts tests il y a 6 ans
package.json 136ab753b3 build: adjust esm formats il y a 6 ans

README.md

@vue/runtime-dom

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

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

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