I have MainLayout
defined (extended from AppLayout
), where I have configured Header
and Drawer
. Also, I have 3 different views which use MainLayout
via @Route
annotation.
There is some similarity between such 3 views - they have the common tabs at the top of the content area. Is it possible somehow to add such tabs into MainLayout
content area? Or inside of AppLayout
I may only add something to Header
and Drawer
only? How to properly implement such common tabs for these 3 views ? Right now I added duplicates of these tabs into each of the view and they don't work as expected(incorrect highlighting of selected tab). How to make them common for 3 views ?