wux-weapp
Version:
一套组件化、可复用、易扩展的微信小程序 UI 组件库
67 lines (66 loc) • 1.12 kB
JavaScript
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: '',
},
}