vue3-core/packages/runtime-dom
daiwei 8bf75a77db
ci / test (push) Waiting to run Details
ci / continuous-release (push) Waiting to run Details
chore: Merge branch 'edison/fix/dynamicComponentWithVHtml' into edison/testVapor
2025-06-19 09:20:17 +08:00
..
__tests__ fix(custom-element): avoid triggering mutationObserver when relecting props 2024-11-15 17:21:49 +08:00
src chore: Merge branch 'edison/fix/dynamicComponentWithVHtml' into edison/testVapor 2025-06-19 09:20:17 +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 chore: merge main into minor 2025-05-15 16:27:31 +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')