Having trouble getting my code to add a new item to the p-breadcrumb list on click. Any assistance would be greatly appreciated. Thank you in advance!
ngOnInit() {
this.items = [
{label: 'Computer'},
{label: 'Notebook'},
{label: 'Accessories'},
{label: 'Backpacks'},
{label: 'Item'}
];
this.home = {icon: 'pi pi-home'};
}
addItem(){
this.items.push({label: 'testing'})
}