# TabPane
Used for
Tabs-component
# Props
| Prop name | Description | Type | Values | Default | Required |
|---|---|---|---|---|---|
| label | string() |
# Slots
| Name | Description | Bindings |
|---|---|---|
| default |
# TabPane
# Example
<template>
<TabPane name="general" />
</template>
This will automatically apply the label for you. For example, for the customers-entity it will apply customers.tabs.general.
# Override
You can override the label-prop.
<template>
<TabPane name="general" :label="$t('customers.tabs.anotherGeneralLabel')" />
</template>