vue3-core/packages/runtime-dom
renovate[bot] f5adc4b8cd
chore(deps): update lint (#13671)
* chore(deps): update lint

* chore: format

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: edison <daiwei521@126.com>
2025-12-15 15:37:29 +08:00
..
__tests__ fix(v-model): handle number modifier on change (#13959) 2025-11-05 17:11:35 +08:00
src chore(deps): update lint (#13671) 2025-12-15 15:37:29 +08:00
LICENSE
README.md style: format html&markdown files (#11531) 2024-08-07 10:57:18 +08:00
index.js
package.json fix(deps): update all non-major dependencies (#14070) 2025-12-15 15:15:07 +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')