123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- export const props = {
- prefixCls: {
- type: String,
- value: 'wux-radio-group',
- },
- cellGroupPrefixCls: {
- type: String,
- value: 'wux-cell-group',
- },
- value: {
- type: String,
- value: '',
- },
- title: {
- type: String,
- value: '',
- },
- label: {
- type: String,
- value: '',
- },
- options: {
- type: Array,
- value: [],
- },
- disabled: {
- type: Boolean,
- value: false,
- },
- readOnly: {
- type: Boolean,
- value: false,
- },
- mode: {
- type: String,
- value: 'default',
- },
- bodyStyle: {
- type: [String, Object],
- value: '',
- },
- hasLine: {
- type: Boolean,
- value: true,
- },
- withListComponent: {
- type: Boolean,
- value: true,
- },
- iconPosition: {
- type: String,
- value: 'right',
- },
- iconSize: {
- type: String,
- value: '',
- },
- iconOn: {
- type: String,
- value: '',
- },
- iconOff: {
- type: String,
- value: '',
- },
- }
|