water_xcx/miniprogram_npm/tdesign-miniprogram/radio-group/props.js

30 lines
458 B
JavaScript
Raw Normal View History

2025-04-15 15:44:51 +08:00
const props = {
align: {
type: String,
value: 'left',
},
disabled: {
type: Boolean,
value: undefined,
},
icon: {
type: null,
value: 'fill-circle',
},
name: {
type: String,
value: '',
},
options: {
type: Array,
},
value: {
type: null,
value: null,
},
defaultValue: {
type: null,
},
};
export default props;