vue3-core/packages/runtime-core
Evan You 1cfa2da78a types: allow string keys in provide/inject 2019-08-13 11:17:55 -04:00
..
__tests__ wip: setup context + emit 2019-06-19 16:43:34 +08:00
src types: allow string keys in provide/inject 2019-08-13 11:17:55 -04:00
.npmignore refactor: rename packages 2018-10-26 15:44:50 -04:00
README.md refactor: rename packages 2018-10-26 15:44:50 -04:00
index.js refactor: rename packages 2018-10-26 15:44:50 -04:00
jsx.d.ts types: bump TS version + type test for createComponent 2019-05-30 22:09:48 +08:00
package.json types: bump TS version + type test for createComponent 2019-05-30 22:09:48 +08:00

README.md

@vue/runtime-core

This package is published only for typing and building custom renderers. It is NOT meant to be used in applications.

import { createRenderer, h } from '@vue/runtime-core'

const { render } = createRenderer({
  nodeOps,
  patchData,
  teardownVNode
})

render(h('div'), container)