# HeaderLabelSlotProps

> _Since v1.9.0_

Slot context for `#headerLabel` slot in TbwGridColumn. Lets the consumer
customize the header label content; the grid keeps ownership of sort
icons, filter buttons, and resize handles.

#### Example

```vue
<TbwGridColumn field="price">
  <template #headerLabel="{ value }">
    <span>{{ value }} <small>(USD)</small></span>
  </template>
</TbwGridColumn>
```

## Properties

| Property | Type | Description |
| -------- | ---- | ----------- |
| `column` | <code><a href="/grid/vue/api/types/columnconfig/">ColumnConfig</a>&lt;TRow&gt;</code> | Column configuration reference. |
| `value` | <code>string</code> | The header text (from `column.header` or `column.field`). |
