mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
d04b550f2e
DEPRECATION: The template prefixes `bind-`, `on-`, `bindon-`, and `ref-` have been deprecated in v13. Templates should use the more widely documented syntaxes for binding and references: * `[input]="value"` instead of `bind-input="value"` * `[@trigger]="value"` instead of `bind-animate-trigger="value"` * `(click)="onClick()"` instead of `on-click="onClick()"` * `[(ngModel)]="value"` instead of `bindon-ngModel="value"` * `#templateRef` instead of `ref-templateRef` PR Close #43671