I'm skimming through the Angular docs and noticed some things can be written in canonical form:
<button (click)="onSave($event)">Save</button>
<button on-click="onSave($event)">Save</button>
<img [src]="imageUrl”>
<img bind-src="imageUrl”>
<span #text> ...</span>
<span ref-text> …</span>
Are there any other canonical forms that I missed?
Want to compile a list of them.
No responses yet.