You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Evan You 9381349f37 build: only enable esModule compat for cjs builds 3 years ago
..
__tests__ chore: fix types 3 years ago
src fix(build): ensure BaseTransition functions can be tree-shaken 3 years ago
types types: fix global helpers dts generation 4 years ago
LICENSE chore: license 6 years ago
README.md chore: remove yarn reference 3 years ago
api-extractor.json refactor(types): mark internal API exports and exclude from d.ts 5 years ago
index.js refactor: rename packages 7 years ago
package.json release: v3.2.47 3 years ago

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.

For full exposed APIs, see src/index.ts. You can also run pnpm build runtime-core --types from repo root, which will generate an API report at temp/runtime-core.api.md.

Building a Custom Renderer

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

const { render, createApp } = createRenderer({
  patchProp,
  insert,
  remove,
  createElement
  // ...
})

// `render` is the low-level API
// `createApp` returns an app instance with configurable context shared
// by the entire app tree.
export { render, createApp }

export * from '@vue/runtime-core'

See @vue/runtime-dom for how a DOM-targeting renderer is implemented.