Код: Выделить всё
/**
* Represents an option item.
* @group Interface
*/
export interface SelectItem {
label?: string;
value: T;
styleClass?: string;
icon?: string;
title?: string;
disabled?: boolean;
}
Код: Выделить всё
export class NavigationComponent implements OnInit {
pages: SelectItem[] = [
{
label: 'Home',
value: 'home'
},
{
label: 'Page One',
value: 'PageOne'
}


Есть ли простой способ сохранить фокус пунктов меню?
Большое спасибо
Подробнее здесь: https://stackoverflow.com/questions/797 ... ains-focus
Мобильная версия