vue3-core/packages/runtime-dom
HcySunYang 3756270272
fix(runtime-dom): capture errors when setting value for IDL (#3578)
fix #3576
2021-07-15 16:32:25 -04:00
..
__tests__ fix(runtime-dom): capture errors when setting value for IDL (#3578) 2021-07-15 16:32:25 -04:00
src fix(runtime-dom): capture errors when setting value for IDL (#3578) 2021-07-15 16:32:25 -04:00
types feat(types/ide): support find definition for jsx tags, events (#3570) 2021-07-01 13:49:16 -04:00
LICENSE
README.md
api-extractor.json
index.js
package.json release: v3.1.4 2021-07-02 08:37:50 -04:00

README.md

@vue/runtime-dom

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

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

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