Ckeditor5 ошибка "toolbarview-item-unavailable" на Vuejs3 и Django
Я использую CkEditor5 в моем проекте Vuejs3 и Django, он работает нормально, но я не могу использовать дополнительные функции, выдает ошибку toolbarview-item-unavailable
.
Что мне нужно сделать, чтобы загрузить фотографии в мое приложение django?
Функции, которые я хочу получить
<script>
import ClassicEditor from '@ckeditor/ckeditor5-build-classic';
export default {
data() {
return {
editor: ClassicEditor,
editorData: '<p>Asosiy malumotlar</p>',
editorConfig: {
// The configuration of the editor.
toolbar: {
items: [
'heading', '|',
'alignment', '|',
'bold', 'italic', 'strikethrough', 'underline', 'subscript', 'superscript', '|',
'link', '|',
'bulletedList', 'numberedList', 'todoList',
'fontfamily', 'fontsize', 'fontColor', 'fontBackgroundColor', '|',
'code', 'codeBlock', '|',
'insertTable', '|',
'outdent', 'indent', '|',
'uploadImage', 'blockQuote', '|',
'undo', 'redo'
],
}
}
}
},
}
</script>