app/@overflow/commons/ui/component/menu/menu-bar.component.ts

21 lines
343 B
TypeScript
Raw Normal View History

2018-08-15 00:36:18 +00:00
import { Component, OnInit } from '@angular/core';
2018-08-17 06:27:22 +00:00
import { MenuItem } from 'primeng/primeng';
2018-08-15 00:36:18 +00:00
@Component({
2018-08-15 14:54:10 +00:00
selector: 'app-menu-bar',
2018-08-15 15:16:28 +00:00
templateUrl: './menu-bar.component.html',
2018-08-15 00:36:18 +00:00
})
2018-08-15 15:16:28 +00:00
export class MenuBarComponent implements OnInit {
2018-08-15 00:36:18 +00:00
2018-08-17 06:27:22 +00:00
private items: MenuItem[];
2018-08-15 00:36:18 +00:00
constructor(
) { }
ngOnInit() {
}
onTitlebarDoubleClick() {
}
}