Data Binding
const rows = [
{ product: "Skates", sales: 1655},
{ product: "Bikes", sales: 1883 }
]
const table = new wire.datatables().render("#table", {
data: rows
});Last updated
Was this helpful?
const rows = [
{ product: "Skates", sales: 1655},
{ product: "Bikes", sales: 1883 }
]
const table = new wire.datatables().render("#table", {
data: rows
});Last updated
Was this helpful?
Was this helpful?