ionic2隐藏子页面tabs

323

网上找到的方法都不太好用,最后在官方github上找到了解决方案。

添加一个  tabsHideOnSubPages: true  即可

@NgModule({
  declarations: [ MyApp ],
  imports: [
    IonicModule.forRoot(MyApp, {
      tabsHideOnSubPages: true,
    }, {}
  )],
  bootstrap: [IonicApp],
  entryComponents: [ MyApp ],
  providers: []
})

 

留下一个答复

Please enter your comment!
Please enter your name here