/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
devtools/src/app/demo-app/zippy.component.ts
19 строк
470 B
Sheik Althaf
refactor(devtools): removed standalone: true (#58922)
27 ноя 2024, 20:09
27 ноя 2024, 20:09
96c90a5
Код
Авторство
О чём код?
/** * @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: 'app-zippy', templateUrl: './zippy.component.html', styleUrls: ['./zippy.component.scss'], }) export class ZippyComponent { readonly title = input<string>('title'); visible = false; }