taffy-coustom-ui
Version:
12 lines (10 loc) • 321 B
text/typescript
import { Component, ViewChild, Output, EventEmitter, AfterViewInit } from '@angular/core';
({
selector: 'gridCustomers',
templateUrl: './app.component.html'
})
export class GridCustomersComponent implements AfterViewInit {
ngAfterViewInit() {
console.log(1001 + ' ngAfterViewInit! gridCustomers')
}
}