comment-modal.ts 463 B

1234567891011121314
  1. import { NgModule } from '@angular/core';
  2. import { CommonModule } from '@angular/common';
  3. import { CommentModalComponent } from './comment-modal.component'; // 确保路径正确
  4. import { IonicModule } from '@ionic/angular'; // 导入 Ionic 模块
  5. @NgModule({
  6. declarations: [CommentModalComponent],
  7. imports: [
  8. CommonModule,
  9. IonicModule // 确保在这里导入 IonicModule
  10. ],
  11. exports: [CommentModalComponent]
  12. })
  13. export class CommentModalModule {}