CKEditor5 插入文本内容 vue

使用CKEditor5 在vue项目中选中文本的后面插入一段文字。

1.示例

// 示例
<div id="editor">
    <p>Here goes the initial content of the editor.</p>
</div>

2.代码

//1,实例化
editor
 .create( document.querySelector( '#editor' ) )
 .then( editor => {
    
    
     console.log( editor );
 } )
 .catch( error => {
    
    
     console.error( error );
 } );
//2.插入文本
editor.model.change((writer) => {
    
    
 editor.model.insertContent(writer.createText('插入的文本'));
});

猜你喜欢

转载自blog.csdn.net/weixin_39991767/article/details/126804790