2022-08-23 08:48:14 +00:00
|
|
|
import { Component, ElementRef, ViewChild } from '@angular/core';
|
2022-07-22 10:13:50 +00:00
|
|
|
import { MenuItem } from 'primeng/api';
|
|
|
|
import { LayoutService } from "./service/app.layout.service";
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'app-topbar',
|
|
|
|
templateUrl: './app.topbar.component.html'
|
|
|
|
})
|
|
|
|
export class AppTopBarComponent {
|
|
|
|
|
|
|
|
items!: MenuItem[];
|
|
|
|
|
2022-08-23 08:48:14 +00:00
|
|
|
@ViewChild('menu') menu!: ElementRef;
|
|
|
|
|
2022-07-22 10:13:50 +00:00
|
|
|
constructor(public layoutService: LayoutService) { }
|
|
|
|
}
|