Non-Angular (non-AngularJS) there are some ways to bind Component properties to the View.
<img src="{{ boundProperty }}">
<img bind-src="boundProperty">
<img [src]="boundProperty">
Is there a proper way to perform bindings? In what situations should each of the above items be used and why?