Lindy bf0b96c469
feat(Steps): add click event (#2874)
* feat(Steps): add click event

* feat(Steps): code gap

* feat: click event name adjustment
2020-03-17 19:46:21 +08:00

42 lines
920 B
Plaintext

<demo-block title="基础用法">
<van-steps
steps="{{ steps }}"
active="{{ active }}"
custom-class="demo-margin-bottom"
/>
<van-button custom-class="demo-margin-left" bind:click="nextStep">下一步</van-button>
</demo-block>
<demo-block title="自定义样式">
<van-steps
steps="{{ steps }}"
active="{{ active }}"
active-icon="success"
active-color="#38f"
inactive-icon="arrow"
/>
</demo-block>
<demo-block title="竖向步骤条">
<van-steps
steps="{{ steps }}"
active="{{ active }}"
direction="vertical"
active-color="#ee0a24"
/>
</demo-block>
<demo-block title="click事件">
<van-steps
steps="{{ steps }}"
bind:click-step="onClick"
active="{{ active }}"
custom-class="demo-margin-bottom"
/>
<van-button custom-class="demo-margin-left" bind:click="nextStep">下一步</van-button>
</demo-block>
<van-toast id="van-toast" />