1. //app.component.html
    2. <div *ngFor="let item of lists">{{item}}</div>
    1. //app.component.ts
    2. })
    3. export class AppComponent {
    4. title = 'my-homework';
    5. lists:Array<string>=["html","css","js"];
    6. }