I have simple component that contains only form:
import {Component, FORM_DIRECTIVES, NgFor} from \'angular2/angular2\'; @Component({ selector: \'test-com
I know i'm late , this is how i'm doing ,
initializeSelectOptions(){ this.optionList = ['..' , '..' , '..' ]; this.optionList.unshift('Select Options') } ngOnInit(){ this.initializeSelectOptions(); }
In my template ,
{{option}}