You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
768 B
25 lines
768 B
<wux-cell
|
|
wux-class="{{ classes.cell }}"
|
|
prefixCls="{{ cellPrefixCls }}"
|
|
thumb="{{ thumb }}"
|
|
title="{{ title }}"
|
|
label="{{ label }}"
|
|
hasLine="{{ !isLast }}"
|
|
disabled="{{ disabled || context.disabled }}"
|
|
hoverClass="{{ !(readOnly || context.readOnly) ? 'default' : 'none' }}"
|
|
wrapStyle="{{ wrapStyle }}"
|
|
>
|
|
<wux-selectable
|
|
slot="footer"
|
|
wux-class="{{ classes.selectable }}"
|
|
prefixCls="{{ selectablePrefixCls }}"
|
|
type="radio"
|
|
value="{{ value }}"
|
|
checked="{{ inputChecked }}"
|
|
color="{{ color }}"
|
|
disabled="{{ disabled || context.disabled }}"
|
|
readOnly="{{ readOnly || context.readOnly }}"
|
|
controlled
|
|
bind:change="radioChange"
|
|
/>
|
|
</wux-cell>
|
|
|