vue3-core/packages/runtime-dom
daiwei f0ebb0bdc0 chore: update export 2025-03-17 11:19:59 +08:00
..
__tests__ fix(custom-element): avoid triggering mutationObserver when relecting props 2024-11-15 17:21:49 +08:00
src chore: update export 2025-03-17 11:19:59 +08:00
LICENSE
README.md style: format html&markdown files (#11531) 2024-08-07 10:57:18 +08:00
index.js
package.json chore: remove non-function-related changes from vapor branch 2024-12-09 09:03:43 +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')