使用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('插入的文本'));
});