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

live.module.ts 578 B

123456789101112131415161718192021
  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 { LivePageRoutingModule } from './live-routing.module';
  6. import { LivePage } from './live.page';
  7. import { FacebookLoginComponent } from '../components/facebook-login/facebook-login.component';
  8. @NgModule({
  9. imports: [
  10. CommonModule,
  11. FormsModule,
  12. IonicModule,
  13. LivePageRoutingModule
  14. ],
  15. declarations: [LivePage, FacebookLoginComponent]
  16. })
  17. export class LivePageModule {}