如果组件只有原始值绑定但使用 ChangeDetectionStrategy.OnPush,是否有任何性能优势?或者在这种情况下可能有一些缺点?
示例用例:
@Component({
selector: 'my-component',
templateUrl: './my-component.component.html',
changeDetection: ChangeDetectionStrategy.OnPush
})
export class MyComponent {
@Input() title: string;
@Input() count: number;
}