|
|
před 6 roky | |
|---|---|---|
| .. | ||
| __tests__ | 1c4cdd841d refactor(createComponent): rename to defineComponent (#549) | před 6 roky |
| src | fc48e43ac7 chore: fix typo [ci skip] (#547) | před 6 roky |
| LICENSE | 34989ef7fe chore: license | před 6 roky |
| README.md | 360f3b4f37 types: improve type exports | před 6 roky |
| api-extractor.json | b2d269a651 build: use api-extractor for type rollup | před 6 roky |
| index.js | e05673f4d3 refactor: rename packages | před 7 roky |
| jsx.d.ts | dfc7c0f12a refactor: adjust internal vnode types + more dts tests | před 6 roky |
| package.json | 1bb1271b5e release: v3.0.0-alpha.1 | před 6 roky |
import { h, createApp } from '@vue/runtime-dom'
const RootComponent = {
render() {
return h('div', 'hello world')
}
}
createApp().mount(RootComponent, '#app')