A.app.component.ts

    1. ...
    2. export class AppComponent {
    3. title = 'my-app';
    4. lists:Array<number>=[1,2,3,4]
    5. }

    B.app.component.html

    1. <div *ngFor="let item of lists">{{item}}</div>

    image.png