You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
三咲智子 Kevin Deng bfe6b459d3
style: update format & lint config (#9162)
2 years ago
..
__tests__ style: update format & lint config (#9162) 2 years ago
src style: update format & lint config (#9162) 2 years ago
LICENSE chore: license 6 years ago
README.md chore: update runtime-dom/README example to latest signature (#693) [ci skip] 6 years ago
index.js init (graduate from prototype) 7 years ago
package.json release: v3.4.0-rc.2 2 years ago

README.md

@vue/runtime-dom

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

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

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