mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
14 lines
521 B
Plaintext
14 lines
521 B
Plaintext
<view
|
|
class="checkbox-class van-checkbox {{ isInGroup ? 'van-checkbox__item' : ''}} {{ type === 'list' ? 'van-checkbox__list-item' : ''}}"
|
|
bindtap="{{ labelDisabled ? '' : 'handleClick' }}"
|
|
>
|
|
<van-icon
|
|
type="{{ checked ? 'checked' : 'check'}}"
|
|
class="van-checkbox__icon {{ disabled ? 'van-checkbox--disabled' : '' }} {{ checked ? 'van-checkbox--checked' : '' }}"
|
|
bindtap="{{ labelDisabled ? 'handleClick': '' }}"
|
|
></van-icon>
|
|
<text class="van-checkbox__label">
|
|
<slot></slot>
|
|
</text>
|
|
</view>
|