Evan You 114b856fd1 release: v3.2.16 há 4 anos atrás
..
__tests__ 0cfa2112ce fix(custom-elements): fix number prop casting há 4 anos atrás
src 0cfa2112ce fix(custom-elements): fix number prop casting há 4 anos atrás
types 6171aecdcd types: allow binding any value to SelectElement (#4575) há 4 anos atrás
LICENSE 34989ef7fe chore: license há 6 anos atrás
README.md 1b2878d80f chore: update runtime-dom/README example to latest signature (#693) [ci skip] há 6 anos atrás
api-extractor.json c9bf7ded2e refactor(types): mark internal API exports and exclude from d.ts há 6 anos atrás
index.js e05673f4d3 refactor: rename packages há 7 anos atrás
package.json 114b856fd1 release: v3.2.16 há 4 anos atrás

README.md

@vue/runtime-dom

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

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

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