8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd56a22 commit 4d68dc8Copy full SHA for 4d68dc8
src/table/CDataTable.js
@@ -20,6 +20,7 @@ const CDataTable = props => {
20
noItemsViewSlot,
21
noItemsView,
22
captionSlot,
23
+ footerSlot,
24
underTableSlot,
25
theadTopSlot,
26
loadingSlot,
@@ -523,6 +524,7 @@ const CDataTable = props => {
523
524
}
525
</tbody>
526
{ footer && currentItems.length > 0 && <tfoot>{headerContent}</tfoot>}
527
+ { footerSlot }
528
{ captionSlot }
529
</table>
530
{ loading &&
@@ -561,6 +563,7 @@ CDataTable.propTypes = {
561
563
noItemsViewSlot: PropTypes.node,
562
564
noItemsView: PropTypes.object,
565
captionSlot: PropTypes.node,
566
+ footerSlot: PropTypes.node,
567
underTableSlot: PropTypes.node,
568
scopedSlots: PropTypes.object,
569
theadTopSlot: PropTypes.node,
0 commit comments