Create a new Component
>ng g c iteration
Screenshot
Go to iteration.ts and write the following static code
import { Component } from '@angular/core';
@Component({
selector: 'app-iteration',
templateUrl: './iteration.component.html',
styleUrls: ['./iteration.component.css']
})
export class IterationComponent {
public dataList= [ {category: 'Electronics', product : ['SamsungTV', 'Mobiles']},
{category: 'Shoes',product:['Nike Casual', 'Leo']}
];
}
Screenshot
.html code
No comments:
Post a Comment
Thank you for visiting my blog