Step-by-step guide to guide the user to complete the task in accordance with the process. Its steps can be set according to the actual application scenario and the number of the steps can't be less than 2.
### How to use
Simple step bar.
:::demo Set `active` attribute with `Number` type, which indicates the index of steps and starts from 0. You can set `space` attribute when the width of the step needs to be fixed which accepts `Boolean` type. The unit of the `space` attribute is `px`. If not set, it is adaptive. Setting the `finish-status` attribute can change the state of the steps that have been completed.
:::demo Use `title` attribute to set the name of the step, or override the attribute setting with `slot`. We have list all the slot name for you at the end of the document.
A variety of custom icons can be used in the step bar.
:::demo The icon is set by the `icon` property, The types of icons can be found in the document for the Icon component, in addition, you can customize the icon through the slot name.
```html
<el-steps:space="100":active="1">
<el-steptitle="Step 1"icon="edit"></el-step>
<el-steptitle="Step 2"icon="upload"></el-step>
<el-steptitle="Step 3"icon="picture"></el-step>
</el-steps>
```
:::
### Vertical step bar
Vertical step bars.
:::demo You only need to set the `direction` attribute to` vertical` in the `el-steps` element.