How can you set a default option with ng-options?
I've set this in the controller (using the controller as syntax):
this.myOption = this.myOptions[0];
However, that's still returning a blank default option:
<option value="?" selected="selected"></option>
How can I set the default option to the first value in my model ("Item 1")?
ng-model
. – Avicenna