|
|
vor 3 Jahren | |
|---|---|---|
| .. | ||
| __tests__ | e077e6f5f3 workflow: disable threads during tests | vor 3 Jahren |
| src | bdf557f6f2 fix(types): retain type parameters order for public types | vor 3 Jahren |
| LICENSE | 34989ef7fe chore: license | vor 6 Jahren |
| README.md | 1b2878d80f chore: update runtime-dom/README example to latest signature (#693) [ci skip] | vor 6 Jahren |
| index.js | e05673f4d3 refactor: rename packages | vor 7 Jahren |
| package.json | 036914c10b release: v3.3.0-alpha.8 | vor 3 Jahren |
import { h, createApp } from '@vue/runtime-dom'
const RootComponent = {
render() {
return h('div', 'hello world')
}
}
createApp(RootComponent).mount('#app')