| | |
| | | :class="iconClasses" |
| | | :style="[iconWrapStyle]" |
| | | > |
| | | <slot name="icon"> |
| | | <slot name="icon" :elIconSize="elIconSize" :elIconColor="elIconColor"> |
| | | <u-icon |
| | | class="u-radio__icon-wrap__icon" |
| | | name="checkbox-mark" |
| | |
| | | /> |
| | | </slot> |
| | | </view> |
| | | <view class="u-radio__label-wrap cursor-pointer" @tap.stop="labelClickHandler"> |
| | | <slot name="label" :label="label" :elDisabled="elDisabled"> |
| | | <text |
| | | class="u-radio__text" |
| | | @tap.stop="labelClickHandler" |
| | | :style="{ |
| | | color: elDisabled ? elInactiveColor : elLabelColor, |
| | | fontSize: elLabelSize, |
| | | lineHeight: elLabelSize |
| | | }" |
| | | >{{label}}</text> |
| | | </slot> |
| | | </view> |
| | | </view> |
| | | </template> |
| | | |