tab1.module.ts 721 B

12345678910111213141516171819202122
  1. import { IonicModule } from '@ionic/angular';
  2. import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';//新加
  3. import { NgModule } from '@angular/core';
  4. import { CommonModule } from '@angular/common';
  5. import { FormsModule } from '@angular/forms';
  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. ExploreContainerComponentModule,
  15. Tab1PageRoutingModule
  16. ],
  17. declarations: [Tab1Page],
  18. schemas: [CUSTOM_ELEMENTS_SCHEMA]//新加
  19. })
  20. export class Tab1PageModule {}