Skip to content
On this page

Table Slots

Description of available table slots.

Slot: head

PropsTypeDescription
columnsArrayCollection of column definitions.
sortHandlerFunctionFunction to handle sorting columns
Code example
template
<Table>
    <template #head="{columns, sortHandler}">
        <tr>
            <HeaderCell
                v-for="column in columns"
                :cell="column"
                :sort="tableData.sort"
                @sort="sortHandler"
                class="dark:bg-gray-800">
                {{ column.name }}
            </HeaderCell>
            <th>Actions</th>
        </tr>
    </template>
</Table>

Slot: body

PropsTypeDescription
recordsArrayCollection of table records
columnsArrayCollection of column definitions.
Code example
template
<Table>
    <template #body="{records, columns}">
        <tr v-for="record in records">
            <td v-for="field in tableData.columns" v-show="field.visible">
                {{ record[field.attribute] }}
            </td>
            <td><button>Edit</button></td>
        </tr>
    </template>
</Table>

Slot: action

PropsTypeDescription
recordObjectThe current rows data
Code example
template
<Table>
    <template #action="{record}">
        <td>
            <button @edit="editRow(record.id)">Edit</button>  
        </td>
    </template>
</Table>

Slot: globalSearch

PropsTypeDescription
searchObjectTable search object. table.search.global.value
changeGlobalSearchValueFunctionThis function allows you to update the global search value on the table.

Slot: filters

PropsTypeDescription
hasFiltersFunctionHelper to check if we have any filters
filtersArrayCollection of filter definitions
changeFilterValueFunctionThis function allows you to update the filter value on the table.

Slot: addSearch

PropsTypeDescription
hasSearchRowsFunctionHelper to check if we have any enabled search fields
searchArrayCollection of search fields
onAddFunctionThis function allows enable a fields search field.

Slot: toggleColumns

PropsTypeDescription
hasColumnsFunctionHelper to check if we have any enabled search fields
columnsArrayCollection of column definitions
changeFunctionThis function allows enable a fields search field.

Slot: searchRows

PropsTypeDescription
hasSearchesFunctionHelper to check if we have any enabled search fields
searchArrayCollection of search fields
removeSearchFunctionThis function allows reamove a search field.
updateValueFunctionThis function allows update a serahc fields value.