src/app/modules/dashboard/dashboard.component.ts
Корневой компонент рабочего стола
Выводит меню и содержимое
styleUrls | dashboard.scss |
templateUrl | ./dashboard.html |
Properties |
Methods |
constructor()
|
Конструктор |
ngOnInit |
ngOnInit()
|
Установка меню
Returns :
void
|
menu |
menu:
|
Type : any
|
Элементы меню. Приходят из настроек |
import { Component, OnInit } from '@angular/core';
import { MENU } from './menu';
/**
* Корневой компонент рабочего стола
*
* Выводит меню и содержимое
*/
@Component({
templateUrl: './dashboard.html',
styleUrls: ['./dashboard.scss']
})
export class DashboardComponent implements OnInit {
/**
* Элементы меню. Приходят из настроек
* @type {Array}
*/
menu: any = [];
/**
* Конструктор
*/
constructor() {
}
/**
* Установка меню
*/
ngOnInit() {
this.menu = MENU;
}
}
<glx-top-menu-bx [items]="menu"></glx-top-menu-bx>
<div class="container-fluid">
<router-outlet></router-outlet>
</div>