mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
50 lines
938 B
Plaintext
50 lines
938 B
Plaintext
<demo-block title="基础用法" padding>
|
|
<van-switch
|
|
checked="{{ checked }}"
|
|
bind:change="onChange"
|
|
/>
|
|
</demo-block>
|
|
|
|
<demo-block title="禁用状态" padding>
|
|
<van-switch
|
|
checked="{{ checked }}"
|
|
disabled
|
|
bind:change="onChange"
|
|
/>
|
|
</demo-block>
|
|
|
|
<demo-block title="加载状态" padding>
|
|
<van-switch
|
|
checked="{{ checked }}"
|
|
loading
|
|
bind:change="onChange"
|
|
/>
|
|
</demo-block>
|
|
|
|
<demo-block title="自定义大小" padding>
|
|
<van-switch
|
|
checked="{{ checked }}"
|
|
size="24px"
|
|
bind:change="onChange"
|
|
/>
|
|
</demo-block>
|
|
|
|
<demo-block title="自定义颜色" padding>
|
|
<van-switch
|
|
checked="{{ checked }}"
|
|
active-color="#07c160"
|
|
inactive-color="#ee0a24"
|
|
bind:change="onChange"
|
|
/>
|
|
</demo-block>
|
|
|
|
<demo-block title="异步控制" padding>
|
|
<van-switch
|
|
checked="{{ checked2 }}"
|
|
size="36px"
|
|
bind:change="onChange2"
|
|
/>
|
|
</demo-block>
|
|
|
|
<van-dialog id="van-dialog" />
|