Stanislav Lashmanov 08df965e3c feat(runtime-dom): support event options (#149) il y a 6 ans
..
__tests__ 08df965e3c feat(runtime-dom): support event options (#149) il y a 6 ans
src 08df965e3c feat(runtime-dom): support event options (#149) 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 e665a133e9 types: bump TS version + type test for createComponent il y a 7 ans
package.json b2d269a651 build: use api-extractor for type rollup 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')