import { Component } from '@angular/core'; import { MenuItem } from 'primeng/api'; import { MessageService } from "primeng/api"; @Component({ selector: 'app-root', templateUrl: './app.component.html', providers: [MessageService] }) export class AppComponent { geeks: MenuItem[]; gfg: MenuItem[]; ngOnInit() { this.gfg = [ { label: 'HTML', items: [ { label: 'HTML 1' }, { label: 'HTML 2' } ] }, { label: 'Angular', items: [ { label: 'Angular 1' }, { label: 'Angular 2' } ] } ]; this.geeks = [ { label: 'GfgLogo 1', tooltipOptions: { tooltipLabel: "Gfg Logo 1", tooltipPosition: 'bottom', positionLeft: 15, positionTop: -15 }, icon: 'https://media.geeksforgeeks.org/wp-content/cdn-uploads/20190710102234/download3.png', }, { label: 'GfgLogo 2', tooltipOptions: { tooltipLabel: "Gfg Logo 2", tooltipPosition: 'bottom', positionLeft: 15, positionTop: -15 }, icon: 'https://media.geeksforgeeks.org/wp-content/cdn-uploads/20210423141844/Logo1.png', }, { label: 'GfgLogo 3', tooltipOptions: { tooltipLabel: "Gfg Logo 3", tooltipPosition: 'bottom', positionLeft: 15, positionTop: -15 }, icon: 'https://media.geeksforgeeks.org/wp-content/cdn-uploads/20210420155809/gfg-new-logo.png', }, { label: 'GfgLogo 4', tooltipOptions: { tooltipLabel: "Gfg Logo 4", tooltipPosition: 'bottom', positionLeft: 15, positionTop: -15 }, icon: 'https://media.geeksforgeeks.org/wp-content/uploads/20210511160813/g4g.jpg', }, ]; } }