unlayer-integration
Installation
SKILL.md
Integrate Unlayer Editor
Overview
Unlayer provides official wrappers for React, Vue, and Angular, plus a plain JavaScript embed. All wrappers share the same underlying API — only the editor access pattern differs.
Which Framework?
| Framework | Package | Install | Editor Access |
|---|---|---|---|
| React | react-email-editor |
npm i react-email-editor |
useRef<EditorRef> → ref.current?.editor |
| Vue | vue-email-editor |
npm i vue-email-editor |
this.$refs.emailEditor.editor |
| Angular | angular-email-editor |
npm i angular-email-editor |
@ViewChild → this.emailEditor.editor |
| Plain JS | CDN script tag | <script> embed |
Global unlayer object |