/
githubmirror
/
ionic
Обзор
Документация
Войти
/
githubmirror
/
ionic
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/angular/test/base/src/app/standalone/providers/providers.component.ts
15 строк
370 B
Liam DeBeasi
feat(angular): ship Ionic components as Angular standalone components (#28311)
10 окт 2023, 20:06
Не верифицирован
10 окт 2023, 20:06
57e2476
Код
Авторство
О чём код?
import { Component } from '@angular/core'; import { Config } from '@ionic/angular/standalone'; @Component({ selector: 'app-providers', templateUrl: './providers.component.html', standalone: true, }) export class ProvidersComponent { keyboardHeight?: number; constructor(private config: Config) { this.keyboardHeight = config.get('keyboardHeight'); } }