import { Component, OnInit, ViewEncapsulation } from '@angular/core'; @Component({ selector: 'ng-r-collection', templateUrl: './collection.component.html' }) export class CollectionComponent implements OnInit { constructor() { } ngOnInit() { this.refresh(); } refresh(){ // this.collection(this.model, this.page, (collector) => { // this.collector = collector; // }); } }