dk-cell.wxml 973 B

1234567891011121314
  1. <van-cell size="{{ size }}" title="{{ title }}" icon="{{ icon }}" center="{{ center }}" border="{{ border }}" is-link="{{ isLink }}" required="{{ required }}" clickable="{{ clickable }}" title-width="{{ titleWidth }}" value="{{ values }}" label="{{ label }}" title-style="{{titleStyle}}" arrow-direction="{{ arrowDirection }}" use-label-slot="{{useLabelSlot}}" custom-class="custom-class {{customClass}}" title-class="{{titleClass}}" label-class="{{labelClass}}" value-class="{{valueClass}}" style="--cell-horizontal-padding--:{{cellHorizontalPadding}};--cell-vertical-padding--:{{cellVerticalPadding}};--cell-font-size--:{{cellFontSize}}; --cell-value-color:{{cellValueColor}}" bind:click="onClick">
  2. <view slot="title">
  3. <slot name="title"></slot>
  4. </view>
  5. <view slot="label">
  6. <slot name="label"></slot>
  7. </view>
  8. <view slot="icon">
  9. <slot name="icon"></slot>
  10. </view>
  11. <view slot="right-icon">
  12. <slot name="right-icon"></slot>
  13. </view>
  14. </van-cell>