|
|
2 years ago | |
|---|---|---|
| .. | ||
| __tests__ | b3f8b5a4e7 fix(runtime-dom): avoid unset option's value (#10416) | 2 years ago |
| src | b4da5a8da6 feat(runtime-vapor): support v-bind for event | 2 years ago |
| LICENSE | 34989ef7fe chore: license | 6 years ago |
| README.md | 1b2878d80f chore: update runtime-dom/README example to latest signature (#693) [ci skip] | 6 years ago |
| index.js | e05673f4d3 refactor: rename packages | 7 years ago |
| package.json | 5a0365d944 Merge remote-tracking branch 'upstream/main' | 2 years ago |
import { h, createApp } from '@vue/runtime-dom'
const RootComponent = {
render() {
return h('div', 'hello world')
}
}
createApp(RootComponent).mount('#app')