ckeditor5富文本编辑器在vue中的使用

Posted miaosen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ckeditor5富文本编辑器在vue中的使用相关的知识,希望对你有一定的参考价值。

安装依赖:

npm install --save @ckeditor/ckeditor5-vue @ckeditor/ckeditor5-build-classic

要创建编辑器实例,必须首先将编辑器构建和组件模块导入应用程序的根文件中(例如,main.js在由Vue CLI生成时)。然后,使用以下Vue.use()方法启用组件:

import Vue from vue;
import CKEditor from @ckeditor/ckeditor5-vue;

Vue.use( CKEditor );

在组件中的具体使用方式如下:

<template>
    <div id="app">
        <ckeditor :editor="editor" v-model="editorData" :config="editorConfig"></ckeditor>
    </div>
</template>

<script>
    import ClassicEditor from @ckeditor/ckeditor5-build-classic;

    export default {
        name: app,
        data() {
            return {
                editor: ClassicEditor,
                editorData: <p>Content of the editor.</p>,
                editorConfig: {
                    // The configuration of the editor.
                }
            };
        }
    }
</script>

设置ckeditor5输入区域的高度:

<style>
.ck-editor__editable { min-height: 100px; }
</style>

技术图片

以上是关于ckeditor5富文本编辑器在vue中的使用的主要内容,如果未能解决你的问题,请参考以下文章

新一代富文本编辑器——CKEditor5

ckeditor5的文本怎么渲染

vue集成CKEditor构建框架的使用,遇到富文本框不出现工具栏等操作

富文本编辑器tinymce在vue中的使用

vue tinymce 控制图片大小上传,以及富文本编辑框在dialog的问题

vue项目富文本编辑器vue-quill-editor之自定义图片上传