UNPKG

jqwidgets-framework

Version:

jQWidgets is an advanced Angular, Vue, Blazor, React, Web Components, jquery, 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!') } }