Created
June 2, 2024 08:49
-
-
Save GuillaumeDaviid/3ae0401af0820268e2baf60c97dd30cd to your computer and use it in GitHub Desktop.
Angular : OnPush
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { ChangeDetectionStrategy, Component} from '@angular/core'; | |
| @Component({ | |
| selector: 'app-my-component', | |
| templateUrl: './my-component.html', | |
| changeDetection: ChangeDetectionStrategy.OnPush, | |
| standalone: true | |
| }) | |
| export class MyComponent { | |
| // votre code ... | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment