Is it possible set views within tabs to lazy load

I am using Vaadin 13 and wanted to know if there is way to set lazy loading on views (pages) that are associated to a tab component menu. Any input is appreciated.

Why don’t you set each tab to an empty layout and if there are no child components then you have to create the view and add it to the layout. If the layout has child components then you already created the view for that tab.