mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
* feat(Steps): add click event * feat(Steps): code gap * feat: click event name adjustment
42 lines
920 B
Plaintext
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" />
|