2021-04-26 09:12:17 -07:00

8 lines
274 B
HTML

<h2>Child component with @Output()</h2>
<!-- #docregion child-output -->
<label for="item-input">Add an item:</label>
<input type="text" id="item-input" #newItem>
<button (click)="addNewItem(newItem.value)">Add to parent's list</button>
<!-- #enddocregion child-output -->