Launch two pages in separate views at same time?

Hi all, I’m new to Framework7, so forgive me if this is something easy to do.

I have a link in the left panel that launches a page in the left panel. At the same time I would like to launch another page in the main view. Is this possible? If so, how?

Here’s a video for reference. When I click on the first “inbox” link a new page display in the left panel. At the same time I want to load another page with a list of items in the main view.

Do it using router api and call 2 routers navigate on link click:

// left panel view (if it is called "left"):
f7.views.left.router.navigate('/some-page-in-left-panel/');
// main view
f7.views.main.router.navigate('/some-page-in-main view/');