24 lines
583 B
TypeScript
24 lines
583 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-dashboard',
|
|
templateUrl: './full-layout.component.html'
|
|
})
|
|
export class FullLayout implements OnInit {
|
|
|
|
// public disabled = false;
|
|
// public status: {isopen: boolean} = {isopen: false};
|
|
//
|
|
// public toggled(open: boolean): void {
|
|
// console.log('Dropdown is now: ', open);
|
|
// }
|
|
//
|
|
// public toggleDropdown($event: MouseEvent): void {
|
|
// $event.preventDefault();
|
|
// $event.stopPropagation();
|
|
// this.status.isopen = !this.status.isopen;
|
|
// }
|
|
|
|
ngOnInit(): void {}
|
|
}
|