Is there a way to allow users to enter keywords in an input field to filter items within a list of menu items dynamically without using ngModel? I need this to be done without the use of buttons as well. Any suggestions for a workaround?
<div class="launch-switch-popup" [class.hidden]="!isActive">
//INPUT OF SOME SORT GOES HERE
<div class="launch-switch-item" *ngFor="let item of menuItems">
<img class="icon" [src]="item.icon">
<p class="launch-switch-title">{{item.text}}</p>
<br>
<div class="plugin-row" *ngFor="let child of item.children" (click)="clicked(child)">
<p>{{child.text}}</p>
</div>
</div>
</div>