UNPKG

@compodoc/compodoc

Version:

The missing documentation tool for your Angular application

20 lines (14 loc) 340 B
# Todo component This is the core component of the application. ![Screenshot-1](screenshots/todo/todo.png) It display the line of one todo task, and APIs for edition & delete This is an extract of these APIs ```typescript export class TodoComponent { ... editTodo(todo: Todo) { todo.editing = true; } ... } ```