表格单元格扩展
不要尝试在没有表格单元格的情况下使用表格。这不会有趣。
安装
npm install @tiptap/extension-table此扩展需要安装 Table 扩展。
此扩展与 TableKit 扩展一起默认安装,因此您不需要单独安装它。
import { Editor } from '@tiptap/core'
import { TableKit } from '@tiptap/extension-table'
new Editor({
extensions: [TableKit],
})源代码
packages/extension-table-cell/
最小安装
import { Editor } from '@tiptap/core'
import { TableCell } from '@tiptap/extension-table/cell'
new Editor({
extensions: [TableCell],
})