vue3-core/packages/runtime-dom
daiwei 5a8aa0b2ba
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.5.22
2025-09-25 09:05:13 +08:00
..
__tests__ feat(custom-element): allow specifying additional options for `shadowRoot` in custom elements (#12965) 2025-09-24 21:14:54 +08:00
src fix(transition-group): run `forceReflow` on the correct document (fix #13849) (#13853) 2025-09-25 08:42:52 +08:00
LICENSE chore: license 2019-10-28 11:15:17 -04:00
README.md style: format html&markdown files (#11531) 2024-08-07 10:57:18 +08:00
index.js refactor: rename packages 2018-10-26 15:44:50 -04:00
package.json release: v3.5.22 2025-09-25 09:05:13 +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')