vue3-core/packages/runtime-dom
HcySunYang 2451dd8ae6
fix(runtime-core): the select tag's multiple prop should be set before the children mounting (#3202)
fix #3199
2021-03-25 16:49:34 -04:00
..
__tests__ fix(runtime-core): the select tag's multiple prop should be set before the children mounting (#3202) 2021-03-25 16:49:34 -04:00
src fix(runtime-core): the select tag's multiple prop should be set before the children mounting (#3202) 2021-03-25 16:49:34 -04:00
types fix(types/jsx): llow tabindex to be a string (#3476) 2021-03-25 16:20:38 -04:00
LICENSE
README.md
api-extractor.json refactor(types): mark internal API exports and exclude from d.ts 2020-04-30 17:04:35 -04:00
index.js
package.json release: v3.0.7 2021-03-01 10:59:29 -05: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')