member_webapp/@overflow/infra/component/service-summary/service-summary.component.ts
crusader d59d9379f9 ing
2018-05-24 15:44:13 +09:00

30 lines
602 B
TypeScript

import { Component, OnInit, AfterContentInit, Input, OnChanges } from '@angular/core';
import { InfraHost } from '@overflow/commons-typescript/model/infra';
import { InfraService } from '../../service/infra.service';
@Component({
selector: 'of-service-summary',
templateUrl: './service-summary.component.html',
})
export class ServiceSummaryComponent implements OnInit, AfterContentInit, OnChanges {
@Input() service: InfraService;
@Input() visible: boolean;
constructor(
) { }
ngOnInit() {
}
ngAfterContentInit() {
console.log(this.service);
}
ngOnChanges() {
}
}