mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
32 lines
616 B
Plaintext
32 lines
616 B
Plaintext
<demo-block title="基础用法">
|
|
<van-cell-group>
|
|
<van-switch-cell
|
|
title="标题"
|
|
checked="{{ checked }}"
|
|
bind:change="onChange"
|
|
/>
|
|
</van-cell-group>
|
|
</demo-block>
|
|
|
|
<demo-block title="禁用状态">
|
|
<van-cell-group>
|
|
<van-switch-cell
|
|
disabled
|
|
title="标题"
|
|
checked="{{ checked }}"
|
|
bind:change="onChange"
|
|
/>
|
|
</van-cell-group>
|
|
</demo-block>
|
|
|
|
<demo-block title="加载状态">
|
|
<van-cell-group>
|
|
<van-switch-cell
|
|
loading
|
|
title="标题"
|
|
checked="{{ checked }}"
|
|
bind:change="onChange"
|
|
/>
|
|
</van-cell-group>
|
|
</demo-block>
|