Evan You 9ee85a3783 chore: fix unintended import há 5 anos atrás
..
__tests__ 425335c28b fix(v-model): consistent nullish value handling with 2.x (#1530) há 5 anos atrás
src 9ee85a3783 chore: fix unintended import há 5 anos atrás
types 97dedebd80 feat(types): update to Typescript 3.9 (#1106) há 6 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 7f83856f34 release: v3.0.0-beta.18 há 5 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')