#16: π Add Items Using the Service
Adding an item
addItem(item: TodoItem) {
this.todoList.push(item);
}addItem(title: string) {
this.todoListService.addItem({ title });
}Last updated
Was this helpful?
addItem(item: TodoItem) {
this.todoList.push(item);
}addItem(title: string) {
this.todoListService.addItem({ title });
}Last updated
Was this helpful?
Was this helpful?