daiwei 9a2eb53bc0 release: v3.5.32 před 2 týdny
..
__tests__ 959ded22ab fix(runtime-dom): handle activeElement check in Shadow DOM for v-model (#14196) před 4 týdny
src 959ded22ab fix(runtime-dom): handle activeElement check in Shadow DOM for v-model (#14196) před 4 týdny
LICENSE 34989ef7fe chore: license před 6 roky
README.md 8a99f903db style: format html&markdown files (#11531) před 1 rokem
index.js e05673f4d3 refactor: rename packages před 7 roky
package.json 9a2eb53bc0 release: v3.5.32 před 2 týdny

README.md

@vue/runtime-dom

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

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

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