# CellSlotProps

> _Since v0.1.0_

Slot context for #cell slot in TbwGridColumn.

#### Example

```vue
<TbwGridColumn field="status">
  <template #cell="{ value, row }">
    <StatusBadge :value="value" :row="row" />
  </template>
</TbwGridColumn>
```

## Properties

| Property | Type | Description |
| -------- | ---- | ----------- |
| `value` | <code>TValue</code> | The cell value |
| `row` | <code>TRow</code> | The entire row data |
| `column` | <code><a href="/grid/vue/api/types/columnconfig/">ColumnConfig</a>&lt;TRow&gt;</code> | The column configuration |
