Well, I need a help:
I am trying to set the first state in the combo, I have already put the selected but without success. Can anyone tell me what might be wrong, or something to help me solve.
My code:
<div class="col s6">
<label>Escolha seu estado</label>
<select [(ngModel)]="municipio.estado" (change)="buscarCidadesPorEstado($event.target.value)" name="estado" class="browser-default">
<option selected [value]="e.estado" *ngFor="let e of estados" >{{e.estado}}</option>
</select>
</div>
I await solution suggestions. Thank you !!