Propagating events from nested components
We will add the options to delete an item from the list and increase the number of repetitions to our diary. First, let’s add the buttons to the list item template. In the entry-item.component.html
file, we will edit the template:
<div class="mb-4 flex items-center justify-between border-b bg-white p-4"> <div> <span class="font-bold">Date:</span> {{ exerciseSet.date | date }}<br /> <span class="font-bold">Exercise:</span> {{ exerciseSet.exercise }}<br /> <span class="font-bold">Sets:</span> {{ exerciseSet.sets }}<br /> <span class="font-bold">Reps:</span> {{ exerciseSet.reps }} </div> <div class="flex items-center"> <button ...