tab1.module.ts 677 B

123456789101112131415161718192021
  1. import { IonicModule } from '@ionic/angular';
  2. import { NgModule } from '@angular/core';
  3. import { CommonModule } from '@angular/common';
  4. import { FormsModule } from '@angular/forms';
  5. import { SwiperModule } from 'swiper/angular'; // 导入 SwiperModule
  6. import { Tab1Page } from './tab1.page';
  7. import { ExploreContainerComponentModule } from '../explore-container/explore-container.module';
  8. import { Tab1PageRoutingModule } from './tab1-routing.module';
  9. @NgModule({
  10. imports: [
  11. IonicModule,
  12. CommonModule,
  13. FormsModule,
  14. SwiperModule,
  15. ExploreContainerComponentModule,
  16. Tab1PageRoutingModule
  17. ],
  18. declarations: [Tab1Page]
  19. })
  20. export class Tab1PageModule {}