|
|
1 yıl önce | |
|---|---|---|
| .. | ||
| __tests__ | 506c4c53fd fix(custom-element): delete prop on attribute removal | 1 yıl önce |
| src | f1d1831f07 fix(custom-element): handle keys set on custom elements (#11655) | 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 | d298c431cc release: v3.5.0-rc.1 | 1 yıl önce |
import { h, createApp } from '@vue/runtime-dom'
const RootComponent = {
render() {
return h('div', 'hello world')
},
}
createApp(RootComponent).mount('#app')