yasuto2002 / todo-app-angular

0 stars 0 forks source link

Angular Materialのtableは細かくコンポーネント分けをすることができるのか #1

Open yasuto2002 opened 1 year ago

yasuto2002 commented 1 year ago

https://material.angular.io/components/table/overview


<table mat-table [dataSource]="dataSource" class="mat-elevation-z8">
No. {{element.position}}

...


```ts
const ELEMENT_DATA: PeriodicElement[] = [
  {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},
  {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},
  {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},
...
];

*matCellDef="let element"で繰り返してるっぽいので テーブルコンポーネント(親)とカラムコンポーネント(子)みたいな分け方は出来なさそう