In nebular how to apply routerLink to the user dropdown

746 Views Asked by At

I would like to add a link for a dropdown coded using nb-action loaded from the controller.

Check the screenshot here

I tried adding routerLink or link in the paramas but no luck. userMenu = [{ title: 'Profile' }, { title: 'Log out' , link: '/login'}];

Coding at angular6, using ngx-theme and nebular

1

There are 1 best solutions below

0
On

i found the answer in other page but in short it is this way.

constructor(menu: NbMenuService) {
this.menu.onItemClick().subscribe(e => {
      console.log(e.item);
    });
}

I hope it helps you, regards. The documentation is very little