#18: π Remove item
Add the "remove" button
template: `
<div class="todo-item">
{{ item.title }}
<button class="btn btn-red" (click)="removeItem()">
remove
</button>
</div>
`,@Output() remove: EventEmitter<TodoItem> = new EventEmitter<TodoItem>();import { Component, Input, EventEmitter, Output } from '@angular/core';Remove the todo item
Last updated