vue3-core/packages/runtime-dom
linzhe c4312f9c71
fix(runtime-dom): set css vars on update to handle child forcing reflow in onMount (#11561)
2024-11-14 15:58:28 +08:00
..
__tests__ fix(runtime-dom): set css vars on update to handle child forcing reflow in onMount (#11561) 2024-11-14 15:58:28 +08:00
src fix(runtime-dom): set css vars on update to handle child forcing reflow in onMount (#11561) 2024-11-14 15:58:28 +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.12 2024-10-11 21:12:32 +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')