vue3-yuanma/packages/core
2018-10-18 17:49:11 -04:00
..
__tests__ test: wip tests for inheritance and mixins 2018-10-17 17:36:34 -04:00
src fix: KeepAlive state should be non-reactive 2018-10-18 17:49:11 -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
jsx.d.ts types: basic tsx support 2018-10-13 20:46:30 -04:00
package.json build: adjust types build script 2018-10-16 17:41:59 -04:00
README.md refactor: use regex instead of startsWith 2018-09-25 12:06:19 -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({
  nodeOps,
  patchData,
  teardownVNode
})

render(h('div'), container)