I have problem when using accordion with large content inside. My case are using nested accordion.
My Solution are using Lazy Rendering with template like below
<mat-expansion-panel> <mat-expansion-panel-header> This is the expansion title </mat-expansion-panel-header> <ng-template matExpansionPanelContent> Some deferred content </ng-template> </mat-expansion-panel> https://material.angular.io/components/expansion/overview#lazy-rendering
Top comments (1)
cool !!!