import { ChangeDetectionStrategy, Component } from '@angular/core'; import { SettingsService } from '@delon/theme'; @Component({ selector: 'layout-pro-logo', templateUrl: './logo.component.html', changeDetection: ChangeDetectionStrategy.OnPush }) export class LayoutProLogoComponent { get name(): string { return this.setting.app.name!; } constructor(private setting: SettingsService) {} }