vue3-core/packages/runtime-dom
daiwei 926748423d chore: Merge branch 'minor' into vapor 2025-07-04 14:20:10 +08:00
..
__tests__ fix(css-vars): nullish v-bind in style should not lead to unexpected inheritance (#12461) 2025-07-03 16:20:28 +08:00
src chore: Merge branch 'minor' into vapor 2025-07-04 14:20:10 +08:00
LICENSE
README.md
index.js
package.json release: v3.5.17 2025-06-18 21:14:18 +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')