| 12345678910111213141516171819 | <ion-header [translucent]="true">  <ion-toolbar>    <ion-title>      使用说明    </ion-title>  </ion-toolbar></ion-header><ion-content [fullscreen]="true">  <ion-header collapse="condense">    <ion-toolbar>      <ion-title size="large">使用说明</ion-title>    </ion-toolbar>  </ion-header>  <div *ngIf="safeHTML" [innerHTML]="safeHTML"></div>  <ion-button expand="block" routerLink="/tabs/tab3">示例:我的页面</ion-button>  <ion-button expand="block" (click)="openGit()">代码:study-ng-user</ion-button></ion-content>
 |