I have a select html like this:
In case you use Angular's FormBuilder this is the way to go (at least for Angular 9):
yourelement.component.htmlUse [formGroup] to reference form variable, and use formControlName to reference form's inner variable (both defined in TypeScrit file). Preferably, use [value] to reference some type of option ID.
yourelement.component.tsIn the initialization of FormBuilderobject, in ngOnInit() function, set the default value you desire to be as default selected.
. . .
// Remember to add imports of "FormsModule" and "ReactiveFormsModule" to app.module.ts
import { FormBuilder, FormGroup } from '@angular/forms';
. . .
export class YourElementComponent implements OnInit {
//