mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
19 lines
415 B
Plaintext
19 lines
415 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 }}"
|
|
direction="vertical"
|
|
active-color="#f44"
|
|
/>
|
|
</demo-block>
|