API看板方法deleteComment()本页内容deleteComment() 描述 使用评论的 ID 从卡片中移除评论用法deleteComment({ id?: string | number, cardId: string | number}): void;参数 id - (可选)需要删除的评论 ID cardId - (必需)包含该评论的卡片 ID 示例// 创建看板const board = new kanban.Kanban("#root", { columns, cards});// 删除评论board.deleteComment({ id: 1, cardId: 1,});更新日志: 本方法自 v1.4 版本起新增