mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
15 lines
761 B
Plaintext
15 lines
761 B
Plaintext
<demo-block title="基础用法">
|
|
<van-circle type="2d" value="{{ value }}" text="{{ value }}%" />
|
|
</demo-block>
|
|
|
|
<demo-block title="样式定制">
|
|
<van-circle value="{{ value }}" stroke-width="{{ 6 }}" text="宽度定制" />
|
|
<van-circle value="{{ value }}" layer-color="#eee" color="#ee0a24" text="颜色定制" />
|
|
<van-circle value="{{ value }}" color="{{ gradientColor }}" text="渐变色" />
|
|
<van-circle value="{{ value }}" color="#07c160" clockwise="{{ false }}" text="逆时针" />
|
|
<van-circle value="{{ value }}" size="120" text="大小定制" />
|
|
</demo-block>
|
|
|
|
<van-button type="primary" size="small" data-step="10" bind:tap="run">增加</van-button>
|
|
<van-button type="danger" size="small" data-step="-10" bind:tap="run">减少</van-button>
|