Haoqun Jiang d1527fbee4 test: add test for runtime-dom/modules/class (#75) před 6 roky
..
__tests__ d1527fbee4 test: add test for runtime-dom/modules/class (#75) před 6 roky
src d1527fbee4 test: add test for runtime-dom/modules/class (#75) před 6 roky
LICENSE 34989ef7fe chore: license před 6 roky
README.md 360f3b4f37 types: improve type exports 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 dfc7c0f12a refactor: adjust internal vnode types + more dts tests před 6 roky
package.json 5eee1152ca types: (wip) improve dts output 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().mount(RootComponent, '#app')