mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
* fix(router-outlet): never detach() the entering view fixes #18894 * add tests * ci * update package-lock * circle sync runtime
28 lines
784 B
TypeScript
Executable File
28 lines
784 B
TypeScript
Executable File
import { IonicModule } from '@ionic/angular';
|
|
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
import { TabsPageRoutingModule } from './tabs.router.module';
|
|
import { TabsComponent } from './tabs.component';
|
|
import { TabsTab1Component } from '../tabs-tab1/tabs-tab1.component';
|
|
import { TabsTab2Component } from '../tabs-tab2/tabs-tab2.component';
|
|
import { TabsTab1NestedComponent } from '../tabs-tab1-nested/tabs-tab1-nested.component';
|
|
|
|
|
|
@NgModule({
|
|
imports: [
|
|
IonicModule,
|
|
CommonModule,
|
|
FormsModule,
|
|
TabsPageRoutingModule
|
|
],
|
|
declarations: [
|
|
TabsComponent,
|
|
TabsTab1Component,
|
|
TabsTab2Component,
|
|
TabsTab1NestedComponent
|
|
]
|
|
})
|
|
export class TabsPageModule {}
|