2018-10-26 19:44:50 +00:00
|
|
|
# @vue/runtime-dom
|
2018-09-19 15:35:38 +00:00
|
|
|
|
|
|
|
``` js
|
2019-09-06 16:58:31 +00:00
|
|
|
import { h, createApp } from '@vue/runtime-dom'
|
2018-09-19 15:35:38 +00:00
|
|
|
|
2019-09-06 16:58:31 +00:00
|
|
|
const RootComponent = {
|
|
|
|
render() {
|
|
|
|
return h('div', 'hello world')
|
2018-09-19 15:35:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-04 14:24:29 +00:00
|
|
|
createApp(RootComponent).mount('#app')
|
2018-09-19 15:35:38 +00:00
|
|
|
```
|