In Angular 4, I have the following configuration defined in a json config file.
countries: [\'USA\', \'UK\', \'Canada\']; default: \'UK\'
You have to create a new property (ex:selectedCountry) and should use it in [(ngModel)] and further in component file assign default value to it.
[(ngModel)]
default
In your_component_file.ts
this.selectedCountry = default;
In your_component_template.html
{{ c }}
Plunker link