1.0.5 • Published 3 years ago

@team-decorate/ckeditor-build-shrp v1.0.5

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

CKEditor 5 Custom Shrimp Build Editor

Documentation

See:

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.