|
|
1 yıl önce | |
|---|---|---|
| .. | ||
| __tests__ | ea3efa09e0 fix(custom-element): properly set kebab-case props on Vue custom elements | 1 yıl önce |
| src | ea3efa09e0 fix(custom-element): properly set kebab-case props on Vue custom elements | 1 yıl önce |
| LICENSE | 34989ef7fe chore: license | 6 yıl önce |
| README.md | 8a99f903db style: format html&markdown files (#11531) | 1 yıl önce |
| index.js | e05673f4d3 refactor: rename packages | 7 yıl önce |
| package.json | 4b09ab2074 release: v3.5.10 | 1 yıl önce |
import { h, createApp } from '@vue/runtime-dom'
const RootComponent = {
render() {
return h('div', 'hello world')
},
}
createApp(RootComponent).mount('#app')