index.wxml 387 B

1234567891011121314151617
  1. <van-cell
  2. center
  3. title="{{ title }}"
  4. border="{{ border }}"
  5. custom-class="van-switch-cell"
  6. >
  7. <van-switch
  8. size="{{ size }}"
  9. checked="{{ checked }}"
  10. loading="{{ loading }}"
  11. disabled="{{ disabled }}"
  12. active-color="{{ activeColor }}"
  13. inactive-color="{{ inactiveColor }}"
  14. custom-class="van-switch-cell__switch"
  15. bind:change="onChange"
  16. />
  17. </van-cell>