Get value from a select angle

1

Good morning! I need to get a value from a select to get pass the value to the other, however I am new to angular and html ...

Select code:

<div class="col-md-3">
      <select class="form-control" >
        <option selected>Selecione...</option>
        <option *ngFor="let tipo of tipos">{{tipo.Codigo}} - {{tipo.Nome}}</option>
      </select>
    </div>

As I said before, I need to first get the select code. Thanks in advance ^^

    
asked by anonymous 07.06.2018 / 14:03

0 answers