Evan You 8008509aac refactor: fix type errors пре 1 година
..
__tests__ 352bc88c1b fix(custom-element): avoid triggering mutationObserver when relecting props пре 1 година
src 8008509aac refactor: fix type errors пре 1 година
LICENSE 34989ef7fe chore: license пре 6 година
README.md 8a99f903db style: format html&markdown files (#11531) пре 1 година
index.js e05673f4d3 refactor: rename packages пре 7 година
package.json f2b69d79ca chore: remove non-function-related changes from vapor branch пре 1 година

README.md

@vue/runtime-dom

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

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

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