网上找到的方法都不太好用,最后在官方github上找到了解决方案。
添加一个 tabsHideOnSubPages: true 即可
@NgModule({ declarations: [ MyApp ], imports: [ IonicModule.forRoot(MyApp, { tabsHideOnSubPages: true, }, {} )], bootstrap: [IonicApp], entryComponents: [ MyApp ], providers: [] })
网上找到的方法都不太好用,最后在官方github上找到了解决方案。
添加一个 tabsHideOnSubPages: true 即可
@NgModule({ declarations: [ MyApp ], imports: [ IonicModule.forRoot(MyApp, { tabsHideOnSubPages: true, }, {} )], bootstrap: [IonicApp], entryComponents: [ MyApp ], providers: [] })