vue ckeditor5 InlineEditor总是在编辑框中添加逗号

时间:2019-11-02 02:00:44

标签: vue.js ckeditor5

我是ckeditor5-vue的新手。我尝试使用基本配置进行InlineEditor。我总是在编辑框中看到一个逗号开头。我应该调整什么配置值才能消除此行为?这是我使用的代码片段:

    <ckeditor 
              :editor="editor"
              :config="editorConfig"
              v-model="value">

    editor: InlineEditor,
    editorConfig: {
        plugins: [
            EssentialsPlugin,
            BoldPlugin,
            ItalicPlugin,
            LinkPlugin,
            ParagraphPlugin
        ],

        toolbar: {
            items: [
                'bold',
                'italic',
                'link',
                'undo',
                'redo'
            ]
        }
    },

0 个答案:

没有答案