16 lines
413 B
TypeScript
16 lines
413 B
TypeScript
import { ChangeDetectionStrategy, Component } from '@angular/core';
|
|
import { SettingsService } from '@delon/theme';
|
|
|
|
@Component({
|
|
selector: 'layout-pro-footer',
|
|
templateUrl: './footer.component.html',
|
|
changeDetection: ChangeDetectionStrategy.OnPush
|
|
})
|
|
export class LayoutProFooterComponent {
|
|
get year(): number {
|
|
return this.setting.app.year;
|
|
}
|
|
|
|
constructor(private setting: SettingsService) {}
|
|
}
|