mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
29 lines
614 B
Plaintext
29 lines
614 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>
|