We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df938ef commit f130496Copy full SHA for f130496
src/components/table/CDataTable.vue
@@ -47,6 +47,7 @@
47
<div :class="`position-relative ${responsive ? 'table-responsive' : '' }`">
48
<table :class="tableClasses">
49
<thead>
50
+ <slot name="thead-top"/>
51
<tr v-if="header">
52
<template v-for="(name, index) in columnNames">
53
<th
src/components/table/tests/__snapshots__/CDataTable.spec.js.snap
@@ -11,6 +11,7 @@ exports[`CDataTable renders correctly 1`] = `
11
class="table"
12
>
13
14
+
15
<tr />
16
17
<!---->
@@ -146,6 +147,7 @@ exports[`CDataTable renders correctly 2`] = `
146
147
class="table additional-table-class table-dark table-striped table-hover table-bordered border"
148
149
150
151
<tr>
152
153
class="user-custom-class position-relative pr-4"
0 commit comments