import { Component, OnInit, OnDestroy } from '@angular/core'; @Component({ selector: 'cm-table', templateUrl: './table.component.html', styleUrls: ['./table.component.less'] }) export class TableComponent implements OnInit, OnDestroy { constructor() { } ngOnInit() { } ngOnDestroy() { } }