Evan You 2937530bef fix(v-model): handle mutations of v-model bound array/sets 5 سال پیش
..
__tests__ 6a0c7cd905 fix(sfc): fix style variables injection on static vnode (#3847) 5 سال پیش
src 2937530bef fix(v-model): handle mutations of v-model bound array/sets 5 سال پیش
types 8ed3ed6c27 feat(types/ide): support find definition for jsx tags, events (#3570) 5 سال پیش
LICENSE 34989ef7fe chore: license 6 سال پیش
README.md 1b2878d80f chore: update runtime-dom/README example to latest signature (#693) [ci skip] 6 سال پیش
api-extractor.json c9bf7ded2e refactor(types): mark internal API exports and exclude from d.ts 6 سال پیش
index.js e05673f4d3 refactor: rename packages 7 سال پیش
package.json 348c3b01e5 release: v3.1.4 5 سال پیش

README.md

@vue/runtime-dom

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

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

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