import { Component } from '@angular/core'; @Component({ selector: 'cm-table-doc-15', templateUrl: 'table-doc-15.component.html', styleUrls: ['table-doc-15.component.css'] }) export class TableDoc15Component { _dataSet: any = []; _bordered = true; _loading = false; _pagination = true; _header = true; _title = true; _footer = true; _fixHeader = false; _size = 'small'; ngOnInit() { for (let i = 1; i <= 10; i++) { this._dataSet.push({ key: i, name: 'John Brown', age: `${i}2`, address: `New York No. ${i} Lake Park`, description: `My name is John Brown, I am ${i}2 years old, living in New York No. ${i} Lake Park.`, }); } } }