vue3-core/packages/runtime-dom
zhoulixiang 2701355e8e
fix(hydration): avoid hydration mismatch warning for styles with different order (#10011)
close #10000
close #10006
2024-01-08 16:36:27 +08:00
..
__tests__ test: update vShow tests to workaround jsdom regression 2024-01-08 15:03:10 +08:00
src fix(hydration): avoid hydration mismatch warning for styles with different order (#10011) 2024-01-08 16:36:27 +08:00
LICENSE
README.md
index.js
package.json release: v3.4.5 2024-01-04 17:21:24 +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')