vue3-core/packages/runtime-dom
zhiyuanzmj 1df8990504
types(jsx-runtime): use interface instead of type for ReservedProps (#12385)
2025-11-05 16:35:37 +08:00
..
__tests__ test(v-model): mutating an array or set checkbox value (#13974) 2025-10-09 10:16:11 +08:00
src types(jsx-runtime): use interface instead of type for ReservedProps (#12385) 2025-11-05 16:35:37 +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.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')