|
|
11 месяцев назад | |
|---|---|---|
| .. | ||
| __tests__ | a683c80cf4 fix(custom-element): properly resolve props for sync component defs (#12855) | 11 месяцев назад |
| src | a683c80cf4 fix(custom-element): properly resolve props for sync component defs (#12855) | 11 месяцев назад |
| LICENSE | 34989ef7fe chore: license | 6 лет назад |
| README.md | 8a99f903db style: format html&markdown files (#11531) | 1 год назад |
| index.js | e05673f4d3 refactor: rename packages | 7 лет назад |
| package.json | d0253a0b7e release: v3.5.14 | 11 месяцев назад |
import { h, createApp } from '@vue/runtime-dom'
const RootComponent = {
render() {
return h('div', 'hello world')
},
}
createApp(RootComponent).mount('#app')