mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-11 19:11:38 +00:00
11 lines
406 B
HTML
Executable File
11 lines
406 B
HTML
Executable File
<form class="example-form">
|
|
<mat-form-field class="example-full-width">
|
|
<input type="text" placeholder="Pick one" aria-label="Number" matInput [formControl]="myControl" [matAutocomplete]="auto">
|
|
<mat-autocomplete #auto="matAutocomplete">
|
|
<mat-option *ngFor="let option of options" [value]="option">
|
|
{{option}}
|
|
</mat-option>
|
|
</mat-autocomplete>
|
|
</mat-form-field>
|
|
</form>
|