14 lines
200 B
Markdown
Raw Normal View History

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