|
|
2 ani în urmă | |
|---|---|---|
| .. | ||
| __tests__ | 7c8b12620a fix(custom-element): support same direct setup function signature in defineCustomElement | 2 ani în urmă |
| src | bda5ff1d3f chore: fix missing type import | 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 | 3e89a0da21 release: v3.4.28 | 2 ani în urmă |
import { h, createApp } from '@vue/runtime-dom'
const RootComponent = {
render() {
return h('div', 'hello world')
}
}
createApp(RootComponent).mount('#app')