将CKEditor 5与nuxtjs配合使用
我正在尝试在Nuxtjs项目中导入CKEditor 5的自定义版本,我已经尝试了所有可能的方法来正确导入它,但没有一种方法对我有效,这是其中之一:
let ClassicEditor
let CKEditor
if (process.client) {
ClassicEditor = require('./../../static/js/ckeditor')
CKEditor = require('@ckeditor/ckeditor5-vue')
}else{
CKEditor = { component : {template:'<div></div>'}}
}
data() {
return {
editor: ClassicEditor,
}
}
components:{
ckeditor: CKEditor.component
},
<client-only><ckeditor :editor="editor" /></client-only>
每次我更改不同错误的显示方式(例如,Window is not Defined
),并且当我使用不同的方式显示不同的错误时,因此我想知道在通用模式下使用CKEditor和Nuxtjs的最正确方式是什么,请考虑我没有做任何事情,并从安装开始帮助我正确的方式
解决方案
试试
npm install--save@blowstack/ckeditor-nuxt
相关文章