mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2026-01-19 18:57:12 +00:00
9 lines
324 B
HTML
Executable File
9 lines
324 B
HTML
Executable File
<form class="example-form">
|
|
<input type="text" placeholder="Search for a street" [formControl]="control" [matAutocomplete]="auto">
|
|
<mat-autocomplete #auto="matAutocomplete">
|
|
<mat-option *ngFor="let street of filteredStreets | async" [value]="street">
|
|
{{street}}
|
|
</mat-option>
|
|
</mat-autocomplete>
|
|
</form>
|