Pesquisei no Google e não consigo encontrar nada sobre isso.
Eu tenho esse código.
<select ng-model="somethingHere"
ng-options="option.value as option.name for option in options"
></select>
Com alguns dados como este
options = [{
name: 'Something Cool',
value: 'something-cool-value'
}, {
name: 'Something Else',
value: 'something-else-value'
}];
E a saída é algo como isto.
<select ng-model="somethingHere"
ng-options="option.value as option.name for option in options"
class="ng-pristine ng-valid">
<option value="?" selected="selected"></option>
<option value="0">Something Cool</option>
<option value="1">Something Else</option>
</select>
Como é possível definir a primeira opção nos dados como o valor padrão, para que você obtenha um resultado como este.
<select ng-model="somethingHere" ....>
<option value="0" selected="selected">Something Cool</option>
<option value="1">Something Else</option>
</select>
a **single** hard-coded <option> element ... can be nested into the <select> element.
As opções ainda não podiam fazer parte da marcação.