# Tabbar
### Install
``` javascript
import Vue from 'vue';
import { Tabbar, TabbarItem } from 'vant';
Vue.use(Tabbar).use(TabbarItem);
```
## Usage
### Basic Usage
```html
Tab
Tab
Tab
Tab
```
```javascript
export default {
data() {
return {
active: 0
}
}
}
```
### Match by name
```html
Tab
Tab
Tab
Tab
```
```javascript
export default {
data() {
return {
active: 'home'
}
}
}
```
### Show Badge
```html
Tab
Tab
Tab
Tab
```
### Custom Icon
Use `icon` slot to custom icon
```html
Custom
Tab
Tab
```
```javascript
export default {
data() {
return {
active: 0,
icon: {
normal: '//img.yzcdn.cn/icon-normal.png',
active: '//img.yzcdn.cn/icon-active.png'
}
}
}
}
```
### Custom Color
```html
Tab
Tab
Tab
Tab
```
### Route Mode
```html
Tab
Tab
```
## API
### Tabbar Props
| Attribute | Description | Type | Default | Version |
|------|------|------|------|------|
| v-model | Identifier of current tab | *string \| number* | `0` | - |
| fixed | Whether to fixed bottom | *boolean* | `true` | - |
| border | Whether to show border | *boolean* | `true` | - |
| z-index | Z-index | *number* | `1` | - |
| active-color | Color of active tab item | *string* | `#1989fa` | - |
| inactive-color | Color of inactive tab item | *string* | `#7d7e80` | - |
| route | Whether to enable route mode | *boolean* | `false` | - |
| safe-area-inset-bottom | Whether to enable bottom safe area adaptation | *boolean* | `false` | - |
### Tabbar Events
| Event | Description | Arguments |
|------|------|------|
| change | Triggered when change active tab | active: index of current tab |
### TabbarItem Props
| Attribute | Description | Type | Default | Version |
|------|------|------|------|------|
| name | Identifier | *string \| number* | Item index | - |
| icon | Icon name | *string* | - | - |
| dot | Whether to show red dot | *boolean* | - | - |
| info | Content of the badge | *string \| number* | - | - |
| url | Link | *string* | - | - |
| to | Target route of the link, same as to of vue-router | *string \| object* | - | - |
| replace | If true, the navigation will not leave a history record | *boolean* | `false` | - |
### TabbarItem Slots
| Name | Description | SlotProps |
|------|------|------|
| icon | Custom icon | active |