Hello, does anyone knows how to limit amount of displayed rows in the table? It currently has 32 rows but I only want to show first 10 and nothing more, no next page and no pagination.
Have you tried playing with the parameters?
check out:
https://matanya.gitbook.io/vue-tables-2/options-api
“perPage”: 50,
“perPageValues”: [],
},
"perPage": 10,
"perPageValues": [],
"preserveState": true,
"skin": "table",
"sortIcon": {
"base": "fa",
"down": "fa-sort-desc",
"is": "fa-sort",
"up": "fa-sort-asc"
},
"sortable": []
Yes I did, it doesn’t make any difference.