CKEditor 中的插件出现问题

问题描述 投票:0回答:1

我在使用 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",

这是错误:I have such error

如何解决这个问题?每个插件都会出现此错误。

reactjs ckeditor ckeditor5
1个回答
0
投票

您使用什么构建器? 如果您使用 Vite,请检查此 使用 Vite 从源代码集成 CKEditor 5

© www.soinside.com 2019 - 2024. All rights reserved.