Evan You dc91463eb6 release: v3.4.6 2 years ago
..
__tests__ ceb215e45d test: update vShow tests to workaround jsdom regression 2 years ago
src c379bc29ef fix(types): allow `null` type for textarea value (#9997) 2 years ago
LICENSE 34989ef7fe chore: license 6 years ago
README.md 1b2878d80f chore: update runtime-dom/README example to latest signature (#693) [ci skip] 6 years ago
index.js e05673f4d3 refactor: rename packages 7 years ago
package.json dc91463eb6 release: v3.4.6 2 years 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')