poem-detail.page.html 222 B

123456789101112
  1. <ion-header>
  2. <ion-toolbar>
  3. <ion-title>诗歌详情</ion-title>
  4. </ion-toolbar>
  5. </ion-header>
  6. <ion-content>
  7. <div *ngIf="poemContent">
  8. <h2>{{ poemId }}</h2>
  9. <p>{{ poemContent }}</p>
  10. </div>
  11. </ion-content>