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

README.md

@vue/runtime-dom

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

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

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