Daniel Roe e790e1bdd7 build: add production/development export conditions (#9977) 2 ani în urmă
..
__tests__ bfe6b459d3 style: update format & lint config (#9162) 2 ani în urmă
src bfe6b459d3 style: update format & lint config (#9162) 2 ani în urmă
LICENSE 34989ef7fe chore: license 6 ani în urmă
README.md 1b2878d80f chore: update runtime-dom/README example to latest signature (#693) [ci skip] 6 ani în urmă
index.js e05673f4d3 refactor: rename packages 7 ani în urmă
package.json e790e1bdd7 build: add production/development export conditions (#9977) 2 ani în urmă

README.md

@vue/runtime-dom

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

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

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