我在使用 CKEditor 中的插件时遇到问题。我想使用诸如
Table, TableCellProperties, TableProperties, TableToolbar
之类的表格插件,但是当我在config中添加它们时出现一些错误。这是我的配置:
import { EditorConfig } from "@ckeditor/ckeditor5-core";
import {
Table,
TableCellProperties,
TableProperties,
TableToolbar,
} from "@ckeditor/ckeditor5-table";
export const editorConfig: EditorConfig = {
language: "en",
plugins: [
Table,
TableCellProperties,
TableProperties,
TableToolbar
],
table: {
contentToolbar: [
"tableColumn",
"tableRow",
"mergeTableCells",
"tableProperties",
"tableCellProperties",
],
},
removePlugins: [...],
toolbar: {
removeItems: [...]
},
};
这是版本
"@ckeditor/ckeditor5-core": "^43.3.1",
"@ckeditor/ckeditor5-react": "^6.2.0",
"@ckeditor/ckeditor5-table": "^43.3.1",
"@ckeditor/ckeditor5-utils": "^43.3.1",
如何解决这个问题?每个插件都会出现此错误。
您使用什么构建器? 如果您使用 Vite,请检查此 使用 Vite 从源代码集成 CKEditor 5