## Steps
### Install
``` javascript
import { Step, Steps } from 'vant';
Vue.use(Step).use(Steps);
```
### Usage
#### Basic Usage
```html
Step1
Step2
Step3
Step4
```
```javascript
export default {
data() {
return {
active: 1
};
}
}
```
#### Vertical Steps
```html
【City】Status1
2016-07-12 12:40
【City】Status2
2016-07-11 10:00
【City】Status3
2016-07-10 09:30
```
### Steps API
| Attribute | Description | Type | Default |
|------|------|------|------|
| active | Active step | `Number` | 0 |
| icon | Action step icon | `String` | - |
| icon-class | Icon class | `String` | - |
| title | Title | `String` | - |
| description | Description | `String` | - |
| direction | Can be set to `horizontal` `vertical` | `String` | `horizontal` |
| active-color | Active step color | `String` | `#4b0` |
### Steps Slot
| Name | Description |
|------|------|
| icon | Custom icon |
| message-extra | Extra content |