3
In Angular (not Angularjs) there are some ways to Binding Component properties to View.
<img src="{{ boundProperty }}">
<img bind-src="boundProperty">
<img [src]="boundProperty">
Is there a correct way to bind? In which situations each of the cited items should be used and why?
If you read this part of the documentation, your questions will be answered: https://angular.io/guide/architecture#data-Binding
– fsi