## Prop - variant (default)
```typescript
export type TabsVariant = 'default' | 'underline' | 'pills'
defineProps({
variant: {
type: String as PropType,
default: 'default',
},
})
```
```vue
Lorem...
Lorem...
Lorem...
Lorem...
```
## Prop - variant (underline)
```vue
Lorem...
Lorem...
Lorem...
Lorem...
```
## Prop - variant (pills)
```vue
Lorem...
Lorem...
Lorem...
Lorem...
```
## Prop - directive
Use this props if you want to control which directive to use for rendering every tab content
```typescript
export type TabsVariant = 'default' | 'underline' | 'pills'
defineProps({
directive: {
type: String as PropType<'if' | 'show'>,
default: 'if',
},
})
```