vue3-yuanma/packages/core
2018-09-24 00:29:46 -04:00
..
src refactor: group all extracted non-props under $props.attrs, including class and 2018-09-24 00:29:46 -04:00
.npmignore init (graduate from prototype) 2018-09-19 11:35:38 -04:00
index.js init (graduate from prototype) 2018-09-19 11:35:38 -04:00
package.json refactor: depend on scheduler directly in core instead of injecting via createRenderer 2018-09-21 13:34:00 -04:00
README.md chore: more meta 2018-09-20 00:17:20 -04:00

@vue/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/core'

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

render(h('div'), container)