edison 084389ed39 fix(runtime-dom): ensure css vars deps tracking when component has no DOM on mount (#14299) před 3 měsíci
..
__tests__ 084389ed39 fix(runtime-dom): ensure css vars deps tracking when component has no DOM on mount (#14299) před 3 měsíci
src 084389ed39 fix(runtime-dom): ensure css vars deps tracking when component has no DOM on mount (#14299) před 3 měsíci
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 862bbf8083 release: v3.6.0-beta.3 před 3 měsíci

README.md

@vue/runtime-dom

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

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

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