mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-16 18:17:31 +08:00
18 lines
384 B
TypeScript
18 lines
384 B
TypeScript
import { Component, OnInit, NgZone, Input } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-virtual-scroll-inner',
|
|
templateUrl: './virtual-scroll-inner.component.html',
|
|
})
|
|
export class VirtualScrollInnerComponent implements OnInit {
|
|
|
|
@Input() value: string;
|
|
onInit = 0;
|
|
|
|
ngOnInit() {
|
|
NgZone.assertInAngularZone();
|
|
this.onInit++;
|
|
console.log('created');
|
|
}
|
|
}
|