# Limit
Limit number of displayed table rows. To enable it we need to add limit
attribute with numeric value.
# Usage
<div>
<su-table :headers="dataHoldingsHeader" :data="dataHoldings" :limit="3">
<template slot-scope="props">
<td>
{{ props.row.tradingsymbol }}
</td>
<td>
{{ props.row.collateral_value }}
</td>
<td>
{{ props.row.pledge_qty }}
</td>
<td>
{{ props.row.loan_value }}
</td>
</template>
</su-table>
</div>
<script>
export default {
components: {
"su-table": DataTable
},
data () {
return {
// headers and data arrays are available in the table introduction section
dataHoldingsHeader: headers,
dataHoldings: data
}
},
}
</script>
Symbol | Max available (₹) | Pledge Qty | Amount required (₹) |
---|---|---|---|
QUICKHEAL | 127 | 1 | 253.25 |
UPL | 367 | 1 | 734.85 |
L&TFH | 165 | 2 | 330.9 |
Show all rows (3 remaining items) |
← Download CSV Sorting →