mirror of https://github.com/vuejs/core.git
Co-authored-by: Eduardo San Martin Morote <posva@users.noreply.github.com> Co-authored-by: Thorsten Lünborg <t.luenborg@googlemail.com> |
||
|---|---|---|
| .. | ||
| __tests__ | ||
| src | ||
| types | ||
| LICENSE | ||
| README.md | ||
| api-extractor.json | ||
| index.js | ||
| package.json | ||
README.md
@vue/runtime-dom
import { h, createApp } from '@vue/runtime-dom'
const RootComponent = {
render() {
return h('div', 'hello world')
}
}
createApp(RootComponent).mount('#app')