Как я могу превратить базовую таблицу в таблицу данных?Мой код таблицы здесь.Я добавляю модуль datatables.net, но не могу его использовать.
<table class="table table-striped" id="myTable">
<thead>
<tr>
<th>Kategori ID</th>
<th>Ürün ID</th>
<th>Ürün Adı</th>
<th>Ürün Hacmi</th>
<th>Ürün Fiyatı</th>
<th>Ürün Sayısı</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let item of products">
<td>{{item.productId}}</td>
<td>{{item.categoryId}}</td>
<td>{{item.productName}}</td>
<td>{{item.quantityPerUnit}}</td>
<td>{{item.unitPrice}}</td>
<td>{{item.unitsInStock}}</td>
</tr>
</tbody>
</table>