/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/examples/core/test_app_component.ts
34 строки
1 KB
Matthieu Riegler
feat(core): Set default Component changeDetection strategy to OnPush
25 мар 2026, 02:25
25 мар 2026, 02:25
eae8f7e
Код
Авторство
О чём код?
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {ChangeDetectionStrategy, Component} from '@angular/core'; import {RouterOutlet, Routes} from '@angular/router'; import * as animationDslExample from './animation/ts/dsl/module'; import * as diContentChildExample from './di/ts/contentChild/module'; import * as diContentChildrenExample from './di/ts/contentChildren/module'; import * as diViewChildExample from './di/ts/viewChild/module'; import * as diViewChildrenExample from './di/ts/viewChildren/module'; import * as testabilityWhenStableExample from './testability/ts/whenStable/module'; @Component({ selector: 'example-app', imports: [RouterOutlet], template: '<router-outlet />', changeDetection: ChangeDetectionStrategy.Eager, }) export class TestsAppComponent {} export const routes: Routes = [ {path: 'animation/dsl', component: animationDslExample.AppComponent}, {path: 'di/contentChild', component: diContentChildExample.AppComponent}, {path: 'di/contentChildren', component: diContentChildrenExample.AppComponent}, {path: 'di/viewChild', component: diViewChildExample.AppComponent}, {path: 'di/viewChildren', component: diViewChildrenExample.AppComponent}, {path: 'testability/whenStable', component: testabilityWhenStableExample.AppComponent}, ];