vue3-yuanma/packages/core/README.md
2018-09-25 12:06:19 -04:00

16 lines
299 B
Markdown

# @vue/core
> This package is published only for typing and building custom renderers. It is NOT meant to be used in applications.
``` ts
import { createRenderer, h } from '@vue/core'
const { render } = createRenderer({
nodeOps,
patchData,
teardownVNode
})
render(h('div'), container)
```