How to hide tabs

I’m using tabs template. But I would like to have tabs on subpages. Is there an official method for this.

use like this.

    this.tabBarElement = document.querySelector('.tabbar.show-tabbar');
      this.tabBarElement.style.display = 'none';//hide the tab
        
this.tabBarElement.style.display = 'flex'; //show the tab

1 Like

Great, thanks for the help