@team-decorate/ckeditor-build-shrp
v1.0.5
Published
The classic editor build of CKEditor 5 shrimp edition
Downloads
9
Readme
CKEditor 5 Custom Shrimp Build Editor
Documentation
See:
- https://ckeditor.com/docs/ckeditor5/latest/builds/guides/integration/frameworks/vuejs.html
Quick start
npm install @team-decorate/ckeditor-build-shrp @ckeditor/ckeditor5-vue
And use it in your component
<template>
<ckeditor
:editor="editor"
v-model="editorData"
:config="editorConfig"/>
</template>
<script>
import ShrpEditor from '@team-decorate/ckeditor-build-shrp'
export default {
data() {
return {
editor: ShrpEditor,
editorData: '<p>Content of the editor.</p>',
editorConfig: {}
}
}
}
</script>
default plugins
ClassicEditor.builtinPlugins = [
Essentials,
UploadAdapter,
Autoformat,
Bold,
Italic,
BlockQuote,
CKFinder,
EasyImage,
Heading,
Image,
ImageCaption,
ImageStyle,
ImageToolbar,
ImageUpload,
Link,
List,
MediaEmbed,
Paragraph,
PasteFromOffice,
Table,
TableToolbar,
Font,
Alignment,
Strikethrough,
underline,
Mention,
ImageResize,
ImageInsert
];
Ck editor 5
Ck Editor : Read more in the CkEditor.