三咲智子 Kevin Deng 5819dc9001 Merge remote-tracking branch 'upstream/main' 2 年之前
..
__tests__ e2d323538e fix(runtime-dom): v-bind style should clear previous css string value (#10373) 2 年之前
src e2d323538e fix(runtime-dom): v-bind style should clear previous css string value (#10373) 2 年之前
LICENSE 34989ef7fe chore: license 6 年之前
README.md 1b2878d80f chore: update runtime-dom/README example to latest signature (#693) [ci skip] 6 年之前
index.js e05673f4d3 refactor: rename packages 7 年之前
package.json 7fd7742639 Merge remote-tracking branch 'upstream/main' 2 年之前

README.md

@vue/runtime-dom

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

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

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