vue3-yuanma/packages/runtime-dom/README.md

14 lines
200 B
Markdown
Raw Normal View History

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
}
}
2019-09-06 16:58:31 +00:00
createApp().mount(RootComponent, '#app')
2018-09-19 15:35:38 +00:00
```