vue3-core/packages/runtime-dom
Thorsten Lünborg 89b2f924fc
fix(runtime-dom): fix option element value patching edge case (#4959)
fix #4956
2021-11-25 05:05:02 -05:00
..
__tests__ fix(runtime-dom): fix option element value patching edge case (#4959) 2021-11-25 05:05:02 -05:00
src fix(runtime-dom): fix option element value patching edge case (#4959) 2021-11-25 05:05:02 -05:00
types chore: prettier format (#4715) [ci skip] 2021-10-08 12:00:05 -04:00
LICENSE
README.md
api-extractor.json
index.js
package.json release: v3.2.22 2021-11-15 11:45:05 +08: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')