I am trying to open a URL in new window by clicking on menu item in angular but I don't know a method of doing such thing in _nav.ts file. Below is the code of my menu item
{
name: 'Power BI',
url: "window.open('www.google.com', '_blank')",
icon: 'fa fa-archive',
version: '0.0.1',
key: 'VIEW_EXTERNAL_POWERBI',
}
Please help me out how to achieve this thing.
*Note: I want to open link in new window instead of new tab.
Thank you