<select id="role" name="role" class="form-control" [(ngModel)]="user.role" #role="ngModel" required>
<option value="" >Select</option>
<option value="leadAnalyst">Lead Analyst</option>
<option value="analyst">Analyst</option>
<option value="assistant">Assistant</option>
</select>
user-create.component.ts
ngOnInit() {
this.user.role = 'Select';
}
I have tried using above code but its not working.
user: User;defaultStr = stringngOnInit(){ this.user.role = this.defaultStr }SCREENSHOT prnt.sc/h3rub4 doesnt appear on select , Html is same as you used on plunker