'How to bind Angular event for selection of datalist option in vmware-clarity?

I'm trying to add an input list using following code. My aim is to achieve on select of option, want to extract the value. How it can be done?

<clr-datalist-container>
    <input clrDatalistInput [(ngModel)]="vertical" placeholder="No label" name="Option"/>
    <datalist>
        <option *ngFor="let item of items" [value]="item"></option>
    </datalist>
</clr-datalist-container>


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source