您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

15 行
461 B

  1. import { NgModule } from '@angular/core';
  2. import { CommonModule } from '@angular/common';
  3. import { FormsModule } from '@angular/forms';
  4. import { IonicModule } from '@ionic/angular';
  5. import { ExploreContainerComponent } from './explore-container.component';
  6. @NgModule({
  7. imports: [ CommonModule, FormsModule, IonicModule],
  8. declarations: [ExploreContainerComponent],
  9. exports: [ExploreContainerComponent]
  10. })
  11. export class ExploreContainerComponentModule {}