/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
modules/benchmarks/src/class_bindings/class_bindings.component.ts
37 строк
1 KB
Kristiyan Kostadinov
build: fix type checking issues in test code (#60481)
20 мар 2025, 21:55
20 мар 2025, 21:55
911ad40
Код
Авторство
О чём код?
/** * @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 {Component, Input} from '@angular/core'; @Component({ selector: 'class-bindings', template: ` <div> <p>{{ msg }}</p> <div *ngFor="let obj of list; let i = index" [title]="msg + i"> <span [class]="msg">{{ obj.text }}</span> <span class="baz">one</span> <span class="qux">two</span> <div> <span class="qux">three</span> <span class="qux">four</span> <span class="baz">five</span> <div> <span class="qux">six</span> <span class="baz">seven</span> <span [class]="msg">eight</span> </div> </div> </div> </div> `, standalone: false, }) export class ClassBindingsComponent { @Input() msg: string = ''; @Input() list: {i: number; text: string}[] | null = null; }