UNPKG

jqwidgets-scripts-custom

Version:

jQWidgets is an advanced jQuery, Angular 7, Vue, React, ASP .NET MVC, Custom Elements and HTML5 UI framework.

15 lines (12 loc) 430 B
import { Component, ViewChild, Output, EventEmitter, AfterViewInit } from '@angular/core'; @Component({ //selector: 'customers', //TODO: it is not needed (because there is no item to create) templateUrl: './approuter.component.html' }) export class CustomersComponent implements AfterViewInit { //TODO: It can be deleted constructor() {} ngAfterViewInit() { console.log(1000 + ' ngAfterViewInit!') } }