Angular matSort does not sort

后端 未结 8 1755
深忆病人
深忆病人 2020-12-09 03:07

I\'m having trouble with importing matSort into my matTable.

I\'m providing you with my code:

dashboard.component.ts



        
8条回答
  •  暖寄归人
    2020-12-09 03:24

    I just had this problem, and all I had to do was making sure you're referencing your matSort viewChild correctly and make sure you have added the MatSortModule in your module.ts file in the imports area.

    Like the following:

    @NgModule({
      imports: [
        MatSortModule,
        MatTableModule,
      ]
    )}
    

提交回复
热议问题