Attribute inputs vs explicit inputs in Angular
Which approach of passing string inputs is more performant/recommended in Angular?
Attribute binding:
or explicit inputs:
?
Does either of them result in fewer CD checks, ngOnchanges calls, or have DOM access advantages?