2018-10-27 03:44:50 +08:00
|
|
|
# @vue/runtime-core
|
2018-09-19 23:35:38 +08:00
|
|
|
|
|
|
|
> This package is published only for typing and building custom renderers. It is NOT meant to be used in applications.
|
2018-09-20 12:17:20 +08:00
|
|
|
|
|
|
|
``` ts
|
2018-10-27 03:44:50 +08:00
|
|
|
import { createRenderer, h } from '@vue/runtime-core'
|
2018-09-20 12:17:20 +08:00
|
|
|
|
|
|
|
const { render } = createRenderer({
|
|
|
|
nodeOps,
|
|
|
|
patchData,
|
|
|
|
teardownVNode
|
|
|
|
})
|
|
|
|
|
|
|
|
render(h('div'), container)
|
|
|
|
```
|