src/app/modules/user/user.component.ts
Компонент-оболочка для модуля пользоваетль
styleUrls | user.scss |
templateUrl | ./user.html |
Properties |
Methods |
constructor()
|
Defined in src/app/modules/user/user.component.ts:16
|
Конструктор |
ngOnInit |
ngOnInit()
|
Defined in src/app/modules/user/user.component.ts:27
|
Инициализируем меню
Returns :
void
|
menu |
menu:
|
Type : any
|
Defined in src/app/modules/user/user.component.ts:16
|
Список элементов меню |
import { Component, OnInit } from '@angular/core';
import { MENU } from './menu';
/**
* Компонент-оболочка для модуля пользоваетль
*/
@Component({
templateUrl: './user.html',
styleUrls: ['./user.scss']
})
export class UserComponent 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>