---
title: provideEditor
description: Provide an OpenPencil editor instance to a Vue subtree using injection.
---
# provideEditor
`provideEditor(editor)` makes an OpenPencil editor available to descendant composables and headless primitives through Vue injection.
This is the foundation for `useEditor()`.
## Usage
```ts
import { provideEditor } from '@open-pencil/vue'
provideEditor(editor)
```
## Basic example
```vue
```
## Notes
The current SDK uses `provideEditor()` and `useEditor()` directly. Some older examples and error messages still refer to an `OpenPencilProvider` component, but the injection model is the real API surface to prefer in docs and app code.
## Related APIs
- [useEditor](./use-editor)