vue3-core/packages/runtime-dom
daiwei 56a7f9dd18
ci / test (push) Has been cancelled Details
ci / continuous-release (push) Has been cancelled Details
size data / upload (push) Has been cancelled Details
release: v3.6.0-alpha.2
2025-07-18 17:37:08 +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 style: format html&markdown files (#11531) 2024-08-07 10:57:18 +08:00
index.js
package.json release: v3.6.0-alpha.2 2025-07-18 17:37:08 +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')