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