Evan You d7eab51315 refactor: move dom tag config to shared пре 6 година
..
__tests__ e98a85f3cb refactor: applyDirectives -> withDirectives пре 6 година
src d7eab51315 refactor: move dom tag config to shared пре 6 година
LICENSE 34989ef7fe chore: license пре 6 година
README.md 360f3b4f37 types: improve type exports пре 6 година
api-extractor.json b2d269a651 build: use api-extractor for type rollup пре 6 година
index.js e05673f4d3 refactor: rename packages пре 7 година
jsx.d.ts dfc7c0f12a refactor: adjust internal vnode types + more dts tests пре 6 година
package.json 5eee1152ca types: (wip) improve dts output пре 6 година

README.md

@vue/runtime-dom

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

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

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