2
0
linzhe fdc2a31dbd fix(runtime-dom): apply css vars before mount (#11538) 1 жил өмнө
..
__tests__ 5df67e3675 fix(runtime-dom): handle undefined values in v-html (#11403) 1 жил өмнө
src fdc2a31dbd fix(runtime-dom): apply css vars before mount (#11538) 1 жил өмнө
LICENSE 34989ef7fe chore: license 6 жил өмнө
README.md 8a99f903db style: format html&markdown files (#11531) 1 жил өмнө
index.js e05673f4d3 refactor: rename packages 7 жил өмнө
package.json 1cbbb04008 release: v3.4.36 1 жил өмнө

README.md

@vue/runtime-dom

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

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

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