undo()
설명
Kanban에서 마지막 작업을 되돌립니다.
정보
undo()
메서드는 history: true
설정이 활성화되어 있을 때만 작동합니다!
사용법
undo(): void;
예제
// Kanban 생성
const board = new kanban.Kanban("#root", {
columns,
cards
});
// Kanban의 이력에서 한 단계 뒤로 이동
board.undo();
변경 로그: 이 메서드는 v1.3에 추가되었습니다.