editorjs

How to setup editor.js in vuejs without hassle

Mostafa Kamal
code4mk organization
1 min readMay 23, 2019

--

#editorjs #vue_editorjs #editorjs_vue #code4mk

editor.js

Editor.js is a next-generation block-based editor, and it’s open source. editor.js returns a JSON output. editor.js built by codex-team.

core block plugins are header paragraph image embed list table and so on. plugin organization

# Implement editorjs with vuejs pos

npm install @editorjs/editorjs
npm install @editorjs/header
npm install @editorjs/paragraph
npm install @editorjs/list
  • you can install your desired block from editorjs.

# vue file

# codesandbox

# official

--

--