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