File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 7777 </tr >
7878 </thead >
7979 <tbody
80- v-if =" items.length && headerColumns.length"
80+ v-if =" headerColumns.length"
8181 class =" vue3-easy-data-table__body"
8282 :class =" {'row-alternation': alternating}"
8383 >
Original file line number Diff line number Diff line change 6060 </div >
6161 </div >
6262 </template >
63+
64+ <template #body .append >
65+ <span >body.append</span >
66+ </template >
6367 </DataTable >
6468
6569 <div class =" customize-footer" >
@@ -230,6 +234,9 @@ const prevPage = () => {
230234const updatePage = (paginationNumber : number ) => {
231235 dataTable .value .updatePage (paginationNumber );
232236};
237+ const isDataHeader = (header : Header ) => {
238+ return ! (header .value === ' checkbox' || header .value === ' index' || header .value === ' expand' )
239+ }
233240
234241// rows per page
235242const rowsPerPageOptions = computed (() => dataTable .value ?.rowsPerPageOptions );
You can’t perform that action at this time.
0 commit comments