Angular Material展开面板选项如何仅展开折叠箭头

时间:2019-02-27 10:19:53

标签: angular angular-material

如何操作Angular Material扩展面板选项以仅扩展**折叠箭头** 谢谢                                             个人资料                                   输入您的姓名和年龄                    

    <mat-form-field>
      <input matInput placeholder="First name">
    </mat-form-field>

    <mat-form-field>
      <input matInput placeholder="Age">
    </mat-form-field>
  </mat-expansion-panel>
  <mat-expansion-panel (opened)="panelOpenState = true"
                       (closed)="panelOpenState = false">
    <mat-expansion-panel-header>
      <mat-panel-title>
        Self aware panel
      </mat-panel-title>
      <mat-panel-description>
        Currently I am {{panelOpenState ? 'open' : 'closed'}}
      </mat-panel-description>
    </mat-expansion-panel-header>
    <p>I'm visible because I am open</p>
  </mat-expansion-panel>
</mat-accordion>

0 个答案:

没有答案