Evan You 9f64d2b681 chore: Merge branch 'main' into minor 2 роки тому
..
__tests__ 9f64d2b681 chore: Merge branch 'main' into minor 2 роки тому
src 9f64d2b681 chore: Merge branch 'main' into minor 2 роки тому
LICENSE 34989ef7fe chore: license 6 роки тому
README.md 1b2878d80f chore: update runtime-dom/README example to latest signature (#693) [ci skip] 6 роки тому
index.js e05673f4d3 refactor: rename packages 7 роки тому
package.json c51ab4c765 release: v3.4.0-beta.2 2 роки тому

README.md

@vue/runtime-dom

import { h, createApp } from '@vue/runtime-dom'

const RootComponent = {
  render() {
    return h('div', 'hello world')
  }
}

createApp(RootComponent).mount('#app')