列表循环*ngFor

    1. <div (click)="handleclick()">{{title}}</div>
    2. //实现列表循环
    3. <div *ngFor="let item of lists">
    4. {{item}}
    5. </div>