1.nuxt.config.js ckeditor5추가(npm 으로 추가해도됨) script: [ { hid: 'stripe', src: 'https://cdnjs.cloudflare.com/ajax/libs/ckeditor5/34.2.0/ckeditor.min.js', defer: true } ] 2.에디터 컴포넌트 생성 makeEditor() { window.ClassicEditor .create(this.$refs.editor, { extraPlugins: [], }) .then(newEditor => { this.editor = markRaw(newEditor); this.editor.setData(this.text); this.MyCustomUploadAdapterPlugin(); }) .catch..