daiwei 767cd23496 release: v3.6.0-alpha.6 5 months ago
..
__tests__ f0d0cfd1d4 feat(runtime-vapor): support svg and MathML (#13703) 6 months ago
src 8cb33d79d2 chore: Merge branch 'main' into minor 5 months ago
LICENSE 34989ef7fe chore: license 6 years ago
README.md 8a99f903db style: format html&markdown files (#11531) 1 year ago
index.js e05673f4d3 refactor: rename packages 7 years ago
package.json 767cd23496 release: v3.6.0-alpha.6 5 months ago

README.md

@vue/runtime-dom

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

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

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