radio-group.wxml 612 B

1234567891011121314151617181920
  1. <wxs src="../common/utils.wxs" module="_" />
  2. <view style="{{_._style([style, customStyle])}}" class="{{classPrefix}} class {{prefix}}-class" aria-role="radiogroup">
  3. <slot />
  4. <block wx:for="{{radioOptions}}" wx:key="value">
  5. <t-radio
  6. class="{{prefix}}-radio-option"
  7. label="{{item.label}}"
  8. value="{{item.value}}"
  9. checked="{{item.checked}}"
  10. data-index="{{index}}"
  11. data-value="{{item.value}}"
  12. disabled="{{item.disabled}}"
  13. align="{{align}}"
  14. icon="{{icon}}"
  15. borderless="{{borderless}}"
  16. bind:change="handleRadioChange"
  17. />
  18. </block>
  19. </view>